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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9a46ad8d6f99f913f2c3a4a7a52626b97f5c0d95 | 35203a386e51cfb25ee7d3679813ea66df5f9d46 | /docs/uml/kv_app.puml | 465aa68a06a4461cc7e71b1734eb3c12166c37ab | [
"Apache-2.0"
] | permissive | mhowto/ps-lite | ba41a16fb665482c41e1c3f6cbe4af85217221c7 | dacead7953e5fcf33efa2577881a25ee8d2d065d | refs/heads/master | 2020-03-19T18:28:20.848791 | 2018-06-10T13:24:31 | 2018-06-10T13:24:31 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,098 | puml | @startuml
' std::vector<int> a(10); SArray<int> b(a); // copying
' std::shared_ptr<std::vector<int>> c(new std::vector<int>(10));
' SArray<int> d(c); // only pointer copying
object SArray {
- size_: size_t
- capacity: size_t
- ptr_: shared_ptr<V>
+ SArray: (const SArray<W>&)
+ operator=: void(const SArray<W>&)
+ CopyFrom(const V* data, size_t size)
+ segement: SArray<V>(begin, end)
+ append: void(const SArray<V>&)
+ pop_back: void()
+ push_back(const V& val)
+ other funcs in vector
}
object KVPairs {
keys: SArray<key>
vals: SArray<Val>
lens: SArray<int>
}
abstract SimpleApp {
- request_handle_: Handle
- response_handle_: Handle
# obj_: Customer*
# Process: void(const Message& Msg)
+ Request: int(int req_head, std::string& req_body, int recv_id)
+ Wait: void(int timestamp)
+ Response: void(const SimpleData& recv_req, const std::string& res_body)
+ set_request_handle: void(const Handle&)
+ set_response_handle: void(const Handle&)
+ get_customer: Customer*()
}
SimpleApp <|-- KVWorker
SimpleApp <|-- KVServer
class KVWorker {
- recv_kvs: unordered_map<int, vector<KVPairs<Val>>>
- callbacks_: unordered_map<int, Callback>
- mu_: mutex
- slicer_: Slicer
- Pull_(keys, vals, lens, cmd, cb)
- AddCallbck(timestamp, cb)
- RunCallback(timestamp)
- Send: void(timestamp, push, cmd, kvs)
- Process: void(const Message& msg)
- DefaultSlicer: void(const KVPairs<Val>& send, const vector<Range>& ranges, SlicedKVs* sliced)
+ Push: int(keys, vals, lens, cmd, cb)
+ Pull: int(keys, vals, lens, cmd, cb)
+ Wait: void(timestamp)
+ ZPush: int(keys, vals, lens, cmd, cb) // zero-copy Push
+ ZPull: int(keys, vals, lens, cmd, cb) // zero-copy Pull
+ set_slicer: void(const Slicer& slicer)
}
object KVMeta {
cmd: int
push: bool
sender: int
timestamp: int
customer_id: int
}
class KVServer {
- Process: void(const Message& msg)
+ Response: void(const KVMeta& req, const KVPairs<Val>& res)
}
@enduml | false | true | false | false | class |
6cfaea3cb6f50a5a1afb332176b47bbe71246419 | 63d05a2d8db31272352bb47eaf1981b74093b719 | /uml/neutron/ml2/network/create_network.puml | 4aa5bb4e406f33cefba0071215beb992ee610765 | [
"Apache-2.0"
] | permissive | ChaosXu/dragonflow | b0635a237ed48d9741c1bb4d5ebbc17a5f5d815c | e497928bc34269bcecc7ea4488f22b5c98b972dc | refs/heads/master | 2020-05-05T09:33:07.999625 | 2019-04-25T11:07:00 | 2019-04-25T11:07:00 | 179,908,580 | 0 | 0 | null | 2019-04-07T02:18:32 | 2019-04-07T02:18:32 | null | UTF-8 | PlantUML | false | false | 415 | puml | @startuml create network
Neutron->DFMechDriver:create_network_precommit
note over DFMechDriver
check if only one provider
end note
Neutron->DFMechDriver:create_network_postcommit
activate DFMechDriver
' network = context.current
DFMechDriver->l2:lswitch=logical_switch_from_neutron_network(network)
DFMechDriver->NbApi:create(lswitch)
DFMechDriver-->Neutron:network
deactivate DFMechDriver
@enduml | false | true | false | false | sequence |
7b0e54a17e103335f797da940da70ab8bf3a1add | 22d3acec3b9eec8cb7830994efcb3d08a877b24e | /wp1/arc-relais-integration/arc-relais-integration-architecture.puml | ccb98e2baf53053273490fa11b56abb6ca1adaef | [] | no_license | trygu/Documents | 99915a4820a1bb6b4fae44c84aa0866e430b3c33 | 4aefd38913d37b872cb319df940a81a4e740ac8e | refs/heads/master | 2022-06-04T03:05:31.002084 | 2022-03-08T10:26:46 | 2022-03-08T10:26:46 | 170,482,518 | 0 | 1 | null | 2019-05-23T15:06:31 | 2019-02-13T09:48:44 | null | UTF-8 | PlantUML | false | false | 458 | puml | @startuml
title "ARC and Relais integration"
' Users ----------
:User:
' Nodes ----------
node "IS2" as IS2 {
package "Relais" as RELAIS {
}
}
node "ARC" as ARC {
package "ARC WS" as ARC_WS {
}
}
' Databases ----------
database "Data" as DATA_DB {
}
database "Metadata" as META_DB {
}
' Links ----------
:User: .> IS2
IS2 -> ARC_WS
RELAIS -down-> DATA_DB
RELAIS -down-> META_DB
ARC -down-> DATA_DB
ARC -down-> META_DB
@enduml | false | true | false | false | sequence |
3021b716e19b7f5646ab043a8413ce817c091242 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.puml | 27f2108f31bf15e3c8edd788578b14e89fc05698 | [] | 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 | 309 | puml | @startuml
class TestRunnerCallback {
+ RunStarted(testsToRun:ITest) : void
+ RunFinished(testResults:ITestResult) : void
+ TestStarted(testName:ITest) : void
+ TestFinished(test:ITestResult) : void
}
ScriptableObject <|-- TestRunnerCallback
ITestRunnerListener <|-- TestRunnerCallback
@enduml
| false | true | false | false | class |
30f6df248840ec42cfd67735f5edef1f7887e741 | d883fb5746fc8bef43819c666482093ff95b22b8 | /doc/erd.puml | db8ab10a26c1a47185c3acdc723005acea246e87 | [] | no_license | aardvark/restfull-payments | ca9a371774e564a07b96f402eb2fd1cc417e716c | 8c304970c15517c051be7dc925e4ee3d0250c113 | refs/heads/master | 2021-01-16T19:36:19.924974 | 2017-08-13T13:37:31 | 2017-08-13T13:39:04 | 100,179,224 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 663 | puml | @startuml
title Resource diagram
object User {
link: /api/users/:id
id
accounts: [Account]
transactions : [Transaction]
allows: GET, OPTIONS
}
object Account {
link: /api/accounts/:id
id
user: User
transactions: [Transaction]
amount: Amount
allows: GET, OPTIONS
}
object Transaction {
link: /api/transactions/:id
id
from: Account
to: Account
amount: Amount
status: Status
allows: GET, POST, DELETE, OPTIONS
}
class Status {
Open
Processing
Processed
Closed
}
User --{ Account
User --{ Transaction
Account --{ Transaction
object Error {
responseCode: int
requestPath: String
errorMessage: String
}
@enduml | false | true | false | false | class |
b9fb10e133860505edc49b495e5112fad42817d2 | 03e9091fe6dd1b0b01f42459386b4cade42a2650 | /src/lexer/doc/cdd/lexer_static.puml | fe21a18d712b5136203f0fb403cfaeffd01589c1 | [] | no_license | KateVeremiichuk/Calculator | ba0e3d46ee0aef5d99e1d79ef982ed1507b101fb | e29f9e67108ed744bf3a086964fb32d14e0ad208 | refs/heads/master | 2020-09-23T16:35:45.602119 | 2019-12-03T08:30:51 | 2019-12-03T08:30:51 | 225,541,336 | 0 | 0 | null | 2019-12-03T08:30:52 | 2019-12-03T05:50:24 | Java | UTF-8 | PlantUML | false | false | 282 | puml | @startuml
class Token {
+ id : TokenId
+ text : string
}
interface ILexer {
+ {abstract} nextToken() : Token
}
class CLexer {
+ CLexer(const string &expr)
+ nextToken() : Token
- m_expr : const string &
- m_pos : size_t
}
CLexer --|> ILexer
@enduml
| false | true | false | false | class |
4e7b2f5d736536beb04b952ffd53bec03d59569f | bf031f6b92d2fc8bc0723b4948642fe42b243226 | /uml/structural/facade_pattern/manyComponent.puml | 5f114ae2e6c0f17b8364911617fc1c4369dad0b6 | [] | no_license | Junhuan-Peng/Go-Design-Pattern | f1936fce24abfc1cbdf89119acba0000a2b542cd | bbbe88543223e50ad5d1bd1ac662e0534fad1a4a | refs/heads/main | 2023-04-08T11:19:55.603967 | 2021-04-17T15:03:29 | 2021-04-17T15:03:29 | 317,451,939 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 764 | puml | @startuml
class Screen{
up()
down()
}
class Projector{
DvdPlayer dvdPlayer
on()
off()
tvMode()
wideScreenMode()
}
class DvdPlayer{
Amplifier amplifier
on()
off()
eject()
pause()
play()
setSurroundAudio()
setTwoChannelAudio()
stop()
}
class PopcornPopper{
on()
off()
pop()
}
class CDPlayer{
Amplifier amplifier
on()
off()
eject()
pause()
play()
stop()
}
class Amplifier{
DvdPlayer dvdPlayer
CDPlayer cdPlayer
on()
off()
setCD()
setSurroundSound()
setVolume()
setStereoSound()
}
Projector -up-> DvdPlayer
Amplifier -right-> DvdPlayer
DvdPlayer -left-> Amplifier
Amplifier -left-> CDPlayer
CDPlayer -right-> Amplifier
@enduml | false | true | false | false | class |
3b6ab96a6ddc2f78466af20e4594f5ada5cc986a | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Playables/DirectorControlPlayable.puml | 84642aedd777b8daa84a59ba4415b14db6952cdb | [] | 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 | 907 | puml | @startuml
class DirectorControlPlayable {
+ {static} Create(graph:PlayableGraph, director:PlayableDirector) : ScriptPlayable<DirectorControlPlayable>
+ <<override>> OnPlayableDestroy(playable:Playable) : void
+ <<override>> PrepareFrame(playable:Playable, info:FrameData) : void
+ <<override>> OnBehaviourPlay(playable:Playable, info:FrameData) : void
+ <<override>> OnBehaviourPause(playable:Playable, info:FrameData) : void
+ <<override>> ProcessFrame(playable:Playable, info:FrameData, playerData:object) : void
SyncSpeed(speed:double) : void
SyncPlayState(graph:PlayableGraph, playableTime:double) : void
DetectDiscontinuity(playable:Playable, info:FrameData) : bool
DetectOutOfSync(playable:Playable) : bool
UpdateTime(playable:Playable) : void
}
PlayableBehaviour <|-- DirectorControlPlayable
DirectorControlPlayable --> "director" PlayableDirector
@enduml
| false | true | false | false | class |
502d4d777890b2a49aab4fde219f856fef0e7b0f | 644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc | /docs/uml/software/old/device/DeviceReader.puml | 17988a026161e476dd3e0a08689f6fe07e2716c4 | [] | no_license | tzAcee/photonized | c929a6c04bedd0304a4e427d6c2895cdf73568d3 | aa53ed7bda18959c58467fe4560dc3ff4e1ae422 | refs/heads/main | 2023-05-03T15:13:31.148910 | 2021-05-25T13:55:17 | 2021-05-25T13:55:17 | 316,536,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 400 | puml | @startuml
class DeviceReader {
+ DeviceReader(console:IConsole)
+ set_parser(parser:ICommandLineParser) : void
+ read() : void
+ print_structure() : void
+ compare(entries:List<DeviceUserEntry>) : void
+ delete() : void
+ print_read_info() : void
}
IDeviceReader <|-- DeviceReader
DeviceReader --> "_parser" ICommandLineParser
DeviceReader --> "_Console" IConsole
@enduml
| false | true | false | false | class |
808c2cb04cb6d6fd1be47b4274b2787b2f77e5d2 | 4d29df71b5b2aedeb82e391c156d9c504278eb86 | /server/src/main/java/cloud/qasino/quiz/entity/Qasino.puml | 6981c2ec46eade5e3ab6f586c15c9c9862af39e8 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | saalk/qasino | ae1cb153db30dd5648ef97af89b2b34bb5f00638 | ffef920efb2dbf7391958c3494c8cb126729777d | refs/heads/master | 2022-11-18T18:44:29.345953 | 2021-10-01T09:43:59 | 2021-10-01T09:43:59 | 226,729,751 | 0 | 1 | MIT | 2022-11-12T02:24:53 | 2019-12-08T20:50:47 | Java | UTF-8 | PlantUML | false | false | 2,481 | puml | @startuml src/main/resources/plantuml/Casino.png
skinparam classAttributeIconSize 0
package "cloud.qasino.quiz" {
package "entity" {
class User {
- userId : int
- created : String
..
- userName : String
- email : String
- balance : int
- pawn : int
-- PREPARE --
+ pawnShip()
-- MAIN --
+ repayLoan()
}
User "1" -right- "n" Player: has played
class Player {
- playerId : int
- created : String
..
- (MoreToOne) userId : User
- (MoreToOne) gameId : Game
..
- avatar : String
- human : boolean
- aiLevel : AiLevel
- playingOrder : int
- balance : int
-- CRUD --
}
Player -right- AiLevel : intelligence
Player "n" -down- "1" Game : plays
enum AiLevel {
DUMB
NORMAL
SMART
..
HUMAN
}
class Game {
+ quizGameId : int
- created : String
..
- (OneToOne) winner: Player
..
- type : Type
- style : Style
- state : GameState
- ante: int
-- PREPARE --
+ setPlayingOrder(in: boolean humanFirst)
+ shuffleDeck(in: #jokers, out: deck)
-- MAIN --
+ layoutOnTable(out: playingQuizs on table)
+ getAllHands(out: playingQuizs per hand)
}
Game -left- Type : playingQuiz
Game -down- Style : style
Game "1" -right- "n" PlayingQuiz : deck
enum Type {
HIGHLOW
BLACKJACK
}
enum Style {
anteToWin: enum
bettingStrategy : enum
numOfDeck : enum
insuranceCost : enum
roundsToWin : enum
maxMoves : enum
}
class PlayingQuiz {
- playingQuizId : int
- created : String
..
- (MoreToOne) gameId : Game
- (MoreToOne) hand : Player
..
- value: int
- order : int
- location : Location
-- PREPARE --
- calculateValue(in:Type)
}
PlayingQuiz -down- Location
PlayingQuiz "0..n" -up- "0..1" Player : in hand
enum Location {
STACK
PILE_DRAW
PILE_DISQUIZ
HAND_OPEN
HAND_CLOSED
TABLE_MIDDLE
}
package "gameEngine" {
class Quiz {
- quizId: String
..
- rank : rank
- suit : suit
- thumbnailPath : String
--
}
class QuizEvent {
- quizEventId : int
- created : String
..
- (MoreToOne) playingQuizId : Quiz
- (MoreToOne) gameId : Game
- (MoreToOne) playerId : Player
.. json..
- playerOrder : int
- roundNumber : int
- moveNumber : int
- move : Move
- bet : int
-- PREPARE --
- validateAction(in: QuizEvent)
-- MAIN --
+ processAction(in/out: QuizEvent)
-- FINISH --
- updatePlayingQuizs()
- calculatePlayerBalance()
+ determineNextAction
(out: Player, Moves, GameState)
}
QuizEvent -up- Move : move
enum Move {
.. Generic
DEAL
PASS
HIGHER
LOWER
}
}
@enduml | false | true | false | false | class |
624d2fb43ad2266c1c8bf0b90beabf80db25d601 | 7e76778bf9a2540a68e2f05ad6ad32f99fc70bed | /Assets/Assets/Scripts/Note.puml | c9315977fbdbbf257ddc6d9deb43e2de755f52c4 | [] | no_license | JosipSkrlec/TVZ_GuestBook | e047760cd605d9d433406edc09f3f24d8a6c3ba3 | 1455332d4b71d615ea38db23698b31741289b056 | refs/heads/main | 2023-07-16T18:40:16.758495 | 2021-08-28T12:42:11 | 2021-08-28T12:42:11 | 347,311,742 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 287 | puml | @startuml
class Note {
+ Note(id:int, username:string, content:string, pinID:int, fontID:int)
+ id : int <<get>> <<set>>
+ Username : string <<get>> <<set>>
+ Content : string <<get>> <<set>>
+ PinID : int <<get>> <<set>>
+ FontID : int <<get>> <<set>>
}
@enduml
| false | true | false | false | class |
8baef801f384fadf105b0bdf3db6ead03d76537d | f337912fce5c43d17e0023010af9627bc0c3a9f2 | /node_modules/@videojs/http-streaming/docs/lhls/expected-flow.plantuml | 90bad7a1ea88020fae9dbe7d106b2104a4c9c833 | [
"MIT",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | neerajkr007/Sync-Player | daaa22ac708a2b2e2860d51480f3f61c3ec2ec2f | cc894dfb679cd6f88978da1799bd1ac4e95c37cd | refs/heads/main | 2023-06-04T06:21:56.119881 | 2021-06-30T04:23:17 | 2021-06-30T04:23:17 | 324,296,214 | 0 | 0 | MIT | 2021-06-06T07:53:58 | 2020-12-25T05:43:57 | HTML | UTF-8 | PlantUML | false | false | 477 | plantuml | @startuml
state "Request Segment" as RS
state "Partial Response (1)" as PR1
state "..." as DDD
state "Partial Response (n)" as PRN
state "Prepare for Append (1)" as PfA1
state "Prepare for Append (n)" as PfAN
state "Append (1)" as A1
state "Append (n)" as AN
[*] -> RS
RS --> PR1
PR1 --> DDD
DDD --> PRN
PR1 -> PfA1
PfA1 : transmux (if needed)
PfA1 -> A1
A1 : MSE source buffer
PRN -> PfAN
PfAN : transmux (if needed)
PfAN -> AN
AN : MSE source buffer
AN --> [*]
@enduml
| false | true | false | false | state |
1c886411454e3b058b316ed0815859146a7c10c5 | 1ba317a667a58d27855ab8a95759a03bbc188022 | /assets/uml/stream-flow.plantuml | 38d6a68fc49298dcff05eeb6ba19b496312d362e | [
"MIT"
] | permissive | ohm-softa/12-functional-cli | d6b4a7b0446b9ff03167b1f41b089e221440b9a4 | 346024b5b2bfc087235180d10ad5fe373614d476 | refs/heads/master | 2023-07-07T11:52:47.048276 | 2023-07-01T07:40:50 | 2023-07-01T07:40:50 | 176,165,187 | 0 | 85 | MIT | 2023-07-01T06:40:54 | 2019-03-17T21:51:50 | Java | UTF-8 | PlantUML | false | false | 238 | plantuml | @startuml StreamFlow
(*) --> "Filter for non null objects"
--> "Skip jokes longer than 80 characters (typical terminal width)"
--> "Limit the stream to the required count of elements"
--> "Print the jokes to the STDOUT"
--> (*)
@enduml
| false | true | false | false | uml-unknown |
5c92bbd8770fe124972780615d9fe5c162c3b505 | 1db6c365d70abe98c78271579dde1e04befc3b8f | /TestVerbesserung.plantuml | 5adf11df4ea1b4d308c446fd2cedf0ec38bea646 | [] | no_license | wolda-wolda/Java_Baum | 892c1744ffb0a8d098423f7b7259f902f8a4bdbf | 2c6eb7a02eddd964dced5780f643231c3b0d6dd7 | refs/heads/master | 2023-08-30T03:11:10.363768 | 2021-11-09T08:20:46 | 2021-11-09T08:20:46 | 426,145,781 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,559 | plantuml | @startuml
title __TESTVERBESSERUNG's Class Diagram__\n
namespace com.wolda {
class com.wolda.Bauer {
}
}
namespace com.wolda {
namespace Baum {
class com.wolda.Baum.ApfelBaum {
}
}
}
namespace com.wolda {
namespace Baum {
abstract class com.wolda.Baum.Baum {
}
}
}
namespace com.wolda {
namespace Baum {
class com.wolda.Baum.BirnenBaum {
}
}
}
namespace com.wolda {
namespace Baum {
class com.wolda.Baum.NadelBaum {
}
}
}
namespace com.wolda {
namespace Baum {
abstract class com.wolda.Baum.ObstBaum {
}
}
}
namespace com.wolda {
class com.wolda.Main {
}
}
namespace com.wolda {
namespace Obst {
class com.wolda.Obst.Apfel {
}
}
}
namespace com.wolda {
namespace Obst {
class com.wolda.Obst.Birne {
}
}
}
namespace com.wolda {
namespace Obst {
class com.wolda.Obst.Obst {
}
}
}
com.wolda.Baum.ApfelBaum -up-|> com.wolda.Baum.ObstBaum
com.wolda.Baum.BirnenBaum -up-|> com.wolda.Baum.ObstBaum
com.wolda.Baum.NadelBaum -up-|> com.wolda.Baum.Baum
com.wolda.Baum.ObstBaum -up-|> com.wolda.Baum.Baum
com.wolda.Obst.Apfel -up-|> com.wolda.Obst.Obst
com.wolda.Obst.Birne -up-|> com.wolda.Obst.Obst
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 |
86faa02afb026a38e23d0635811ef22984b3eeb3 | a2bd4162b22142a0364df882d0db7f9e6460eb74 | /Rectangulo.puml | 515da4b17017a4bc6e99143d3b6e60c14bcba5b1 | [] | no_license | alanmaizon/111mil-2020-PrimerosObjetos | ab54d883b06304a40e34a21616644df6e5c7b725 | ca9966220693d3ee074c9501d144e2c185a0f7be | refs/heads/master | 2022-12-10T23:22:03.069802 | 2020-08-14T12:41:34 | 2020-08-14T12:41:34 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 259 | puml | @startuml App
skinparam ClassAttributeIconSize 0
hide circle
class Rectangulo {
- double lado1
- double lado2
- double x
- double y
+ Rectangulo (double l1, double l2)
+ double getPerimetro ()
+ double getSuperficie ()
}
@enduml | false | true | false | false | class |
3a0e0015c7852f1c734dccb0ab98b487e78bbf97 | c9a470d79aa65b6d30df676c2a9b533f3b8261a5 | /casodeuso.puml | 9d6335d7c18a01838040b36c87db35ca40a83479 | [] | no_license | dhiegov/Postites | a15ce0811c3c0182b6e66666cf6d83e8e3012f30 | 372622d4ab7ad57da8c7911cd8581831c053f3aa | refs/heads/master | 2023-08-23T08:16:28.292452 | 2022-04-03T13:41:22 | 2022-04-03T13:41:22 | 142,313,212 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 208 | puml |
@startuml
actor usuario as u
u -> (Visualiza dashboard)
u -> (Cria post-it simples)
u -> (Cria post-it de tarefas)
u -> (Arquiva post-it)
u -> (Visualiza post-its arquivados)
u -> (Busca post-it)
@enduml
| false | true | false | false | usecase |
06aa770d7067bd82de92a0bed27700e09f958d46 | d47acfc35d4aa1059126ab71a7f7611335d6ee7d | /src/main/java/ex43/ex43_UMLDiagram.puml | db1ea72a42fea97005e2fc028c48237b912d61a4 | [] | no_license | psottomayorpereir/sottomayorpereiradasilva-cop3330-assignment3 | b922ae451ae68479124b9c97e8537b7a7254e51d | 087c2155a1021a21c479effe94d3a49bb1e72260 | refs/heads/master | 2023-08-11T12:34:36.946211 | 2021-10-12T06:44:41 | 2021-10-12T06:44:41 | 415,839,947 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 247 | puml | @startuml
class Website{
__private data__
String name;
String author;
__Constructor__
+public Website()
..Simple Setter..
+public void setWebsite(String name, String author)
..Methods..
+public String getName()
+public String getAuthor()
}
@enduml | false | true | false | false | class |
fcbbf0e52a99f764a406ddfbd489f276e3bdd7f1 | f2286f0532a3213ef872cf398cdb7d9fd914c1ba | /UML/Customer.puml | 552dbca938ad1669d08e61710569684c303e390b | [
"MIT"
] | permissive | bj0rnar/ProjectTicketService | fc38a734df8d935a07a8684a30abf56a990639fd | 633417255588d0aa0b22c18c4e9305751fffad59 | refs/heads/master | 2022-01-28T12:39:19.209678 | 2019-06-12T08:56:20 | 2019-06-12T08:56:20 | 173,109,596 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 186 | puml | @startuml
:Customer: as User
User --> (Choose adventure)
User --> (Pay for item)
(Choose seats) .up.> (Choose adventure): exclude
(Choose date) .up.> (Choose adventure): exclude
@enduml | false | true | false | false | uml-unknown |
db1d24d3efb27004f032b2a9b3445810b3d946c0 | d43f28d6ed6e439a07829fe547650db3e3efbbac | /doc/pics/meta_parser.puml | 3dd0a945061d0ed838c7be3a73dfe340e6d6b524 | [] | no_license | tcfh2016/bin2text | c4a8d9601eb32d9c8e446d06d0c26508441319fc | ab037b5906a0992e7ac7168a00046c12b7579a95 | refs/heads/master | 2020-03-20T00:27:07.718057 | 2018-09-19T14:05:31 | 2018-09-19T14:05:31 | 137,044,205 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 751 | puml | @startuml
package "MetadataTypes" #DDDDDD {
MetadataBasicType --|> Metadata
MetadataArray --|> Metadata
MetadataStruct --|> Metadata
MetadataMessage --|> MetadataStruct
Field --* MetadataStruct
MetadataUnion --|> Metadata
MetadataAlias --|> Metadata
MetadataEnum --|> Metadata
}
Metadata --* MetaDataHandler
class MetaDataHandler {
- _metadata_message
- _metadata
+ process()
- _parse_item()
- _parse_message()
- _parse_message_field()
- _parse_constant()
- _parse_struct()
- _parse_struct_field()
- _parse_field()
- _get_field_meta()
- _parse_field_meta()
}
class Metadata
class MetadataBasicType
class MetadataArray
class MetadataStruct
class MetadataMessage
class MetadataUnion
class MetadataAlias
class MetadataEnum
class Field
@enduml
| false | true | false | false | class |
4ad32360c35a40ad7525f0504337561207379780 | 455dc78bc7b9dfce5a2f48f6ce9130df7c50ec36 | /proxypattern/src/main/java/com/chuan_sir/proxypattern/common/Common.puml | 5b12e0be79ecce7f4e1cf195d019f70cb7671733 | [] | no_license | chuan1228/DesignPattern | 835e850bfd29d54bf2cc24eaa2ed8f32ad39cbd9 | 7013e9d257279cfa53dfc2180fb1a0babc0214bc | refs/heads/master | 2020-07-10T12:03:36.489009 | 2019-10-12T03:38:23 | 2019-10-12T03:38:23 | 204,259,219 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 269 | puml | @startuml
abstract class Subject{
+ abstract void : visit()
}
class RealSubject{
+ void : visit()
}
class ProxySubject{
- RealSubject mSubject
+ void : visit()
}
Subject <|-- RealSubject
Subject <|-- ProxySubject
ProxySubject --> RealSubject
@enduml | false | true | false | false | class |
d272dc47700050fc600f4b96965afe31a8af6140 | d20c5c47f69154bab730978ab6926273aa912143 | /doc/sequencediagrams/fr25.puml | 8456cd63a24415de3cfac39f675d315db3e8df1b | [] | no_license | PolyPong/PolyPong | 6343389dfc34c90e017e730e50432b9f190bd0e8 | c51a4ad491351f85d1065dab697dc52dacae7e88 | refs/heads/master | 2023-04-07T02:36:34.103293 | 2021-04-17T05:46:43 | 2021-04-17T05:46:43 | 336,416,757 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 367 | puml | @startuml
actor user
participant Player as P
participant Game as G
'participant Paddle as pad
participant Ball as B
activate user
user -> P: applyPowerup(Bomb)
activate P
P -> G: makeBallBomb()
activate G
G -> B: turnIntoBomb()
activate B
B --> G: success
deactivate B
G --> P: success
deactivate G
P --> user: success
deactivate P
deactivate user
@enduml
| false | true | false | false | usecase |
f736d123642a32a9ab2df1258e79d518c2f5c8f2 | b0a840ee583d0f1dd05adb2bb6e08e4951083c3d | /images/ch17_datepicker/displayMonth-seq.puml | 918bc67077f546497a3fb2c6f72a0566ed335241 | [] | no_license | selenium-webdriver-book/manuscript | 842ab108c9b3eb8127027c159b3318fd3fcdf59b | c8a8ced2b0ca495cacec6c909b3294ff3074e945 | refs/heads/master | 2021-01-12T14:00:07.309802 | 2017-04-23T15:17:59 | 2017-04-23T15:17:59 | 69,686,355 | 11 | 8 | null | 2017-04-23T15:17:59 | 2016-09-30T17:14:29 | Shell | UTF-8 | PlantUML | false | false | 568 | puml | @startuml
hide footbox
skinparam monochrome true
skinparam shadowing false
activate JQueryDatepicker
JQueryDatepicker -> JQueryDatepicker : displayMonth()
group private int displayMonth()
JQueryDatepicker -> Browser: await(CALENDAR)
activate Browser
Browser -> Element: <<create>>
activate Element
Element --> Browser
deactivate Element
Browser -> JQueryDatepicker: Element
deactivate Browser
JQueryDatepicker -> Element : getText(MONTH)
activate Element
Element -> JQueryDatepicker : displayMonth
deactivate Element
deactivate JQueryDatepicker
end
@enduml
| false | true | false | false | sequence |
11ca762a845b00931f226b2578be585f6c8687cd | 7c5c4b44b1042ae2ba92bb2158a6728c91fc0e85 | /src/main/plantuml/SequenceDiaTemperature.puml | 726fe809b2b92cbc4c6e8ca8dc563b45a1e9af83 | [] | no_license | envetn/com.expenses.jsonserver | a2dd3a4cca2cfe181eb8d2962d5c91b137d5e2a1 | b34622482dc73872e6cb59c41976f2e8f2de1b3b | refs/heads/master | 2021-07-15T00:16:51.116749 | 2017-10-17T18:21:45 | 2017-10-17T18:21:45 | 105,804,399 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 604 | puml | @startuml
title Temperature request flow
ServerThread -> RequestHandler: HandleRequest
RequestHandler -> JsonDecoder: ParseAndValidate
JsonDecoder --> JsonDecoder: validateRequestParameters
JsonDecoder -> RequestHandler: request
RequestHandler -> DatabaseHandler: ExecuteRequest(request)
DatabaseHandler --> DatabaseHandler: createQuery
DatabaseHandler -> Database: ExecuteQuery
Database -> DatabaseHandler: queryResult
DatabaseHandler -> JsonDecoder: ParseResponse
JsonDecoder -> DatabaseHandler: Response
DatabaseHandler -> RequestHandler: Response
RequestHandler -> ServerThread: Response
@enduml | false | true | false | false | sequence |
2ee1c504f99e6393b8656d20a67275442f4994e4 | 8aefd4031df34e0be1f896de03a25e4f426576cc | /docs/database.puml | e8613c3da46ce9f5eeb9b68e880fa6651ea4d94b | [] | no_license | JanMalch/kino | eba533f7b88430e1072aa84400c9717c24c4ac6f | 820c203b61f20f993eade6fe5edbe0fc9c500cda | refs/heads/master | 2020-05-03T03:28:50.575556 | 2019-06-25T20:32:44 | 2019-06-25T20:32:44 | 178,399,257 | 2 | 0 | null | 2019-07-31T03:53:27 | 2019-03-29T12:12:57 | Java | UTF-8 | PlantUML | false | false | 2,870 | puml | @startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
' entities
Table(account, "Account") {
primary_key(id) BIGINT
not_null(unique(email)) VARCHAR[255]
not_null(hashedPassword) VARCHAR[255]
not_null(firstName) VARCHAR[255]
not_null(lastName) VARCHAR[255]
not_null(birthday) DATETIME
not_null(role) INTEGER
not_null(salt) TINYBLOB
}
Table(movie, "Movie") {
primary_key(id) BIGINT
not_null(name) VARCHAR[255]
not_null(duration) FLOAT
not_null(startDate) DATETIME
not_null(endDate) DATETIME
not_null(ageRating) INTEGER
not_null(PRICECATEGORY_ID) BIGINT
}
Table(reservation, "Reservation\n(Verknüpfung zwischen User und Aufführung)") {
primary_key(id) BIGINT
not_null(reservationDate) DATETIME
not_null(ACCOUNT_ID) BIGINT
not_null(PRESENTATION_ID) BIGINT
}
Table(presentation, "Presentation") {
primary_key(id) BIGINT
not_null(date) DATETIME
not_null(MOVIE_ID) BIGINT
not_null(CINEMAHALL_ID) BIGINT
}
Table(cinemaHall, "Cinema Hall") {
primary_key(id) BIGINT
not_null(name) VARCHAR[255]
not_null(MOVIE_ID) BIGINT
not_null(CINEMAHALL_ID) BIGINT
}
Table(priceCategory, "Price Category") {
primary_key(id) BIGINT
not_null(name) VARCHAR[255]
not_null(regularPrice) FLOAT
not_null(regularPrice) FLOAT
}
Table(seat, "Seat") {
primary_key(id) BIGINT
not_null(row) VARCHAR[255]
not_null(seatNumber) INTEGER
}
Table(reservationWithSeat, "Reservation with Sear") {
primary_key(id) BIGINT
not_null(RESERVATION_ID) BIGINT
not_null(SEAT_ID) BIGINT
}
' relationships
' one-to-one relationship
' user -- user_profile : "A user only \nhas one profile"
' one to may relationship
account "1" --> "0..N" reservation : Ein User hat mehrere Reservierungen
movie "1" --> "0..N" presentation : Ein Film hat mehrere Aufführungen
presentation "1" --> "0..N" reservation : Eine Aufführung hat mehrere Reservierungen
cinemaHall "1" --> "0..N" presentation : Ein Saal hat mehrere Aufführungen
cinemaHall "1" --> "1..N" seat : Ein Saal hat mehrere Sitze
priceCategory "1" --> "0..N" movie : Mehrere Filme gehören zu einer Preiskategorie
seat --> reservationWithSeat : Ein Sitz gehört zu mehreren Reservierungen
reservation "1" --> "1..N" reservationWithSeat : Eine Reservierung besteht aus mehreren reservierten Sitzen
' many to many relationship
' user "1" --> "*" user_group : "A user may be \nin many groups"
' group "1" --> "0..N" user_group : "A group may \ncontain many users"
@enduml
| false | true | true | false | sequence |
70822fec35ac35583ed70652b42b392e07a7de63 | e24f105e14f114d30bd79364320b07e11d35ce2f | /Plant_UML/UseCaseDiagram.puml | 157d4b0f0cd0cf1723c6b9f9af5a29463f81ee10 | [] | no_license | Ying-LUO/Java2_Assignment2 | 3dd53cb521d106ab98555f0ccba046aed9e8bda3 | f47dcf8c59473af93bad27e4a6727c4eeafd4ee3 | refs/heads/master | 2022-12-07T08:06:39.248093 | 2020-09-02T04:20:32 | 2020-09-02T04:20:32 | 291,143,659 | 0 | 2 | null | 2020-09-02T04:20:33 | 2020-08-28T20:51:11 | Java | UTF-8 | PlantUML | false | false | 1,887 | puml | @startuml Bradshaw Marina Case Study Use Case Diagram
left to right direction
actor "Marina Maneger" as mm
actor "Existing Customer" as ec
actor "New Customer" as nc
rectangle CustomerManagement{
usecase "process queries" as UC1
usecase "add new customer" as UC2
usecase "maintain customer information" as UC3
}
rectangle BoatManagement{
usecase "add new boat" as UC4
usecase "maintain boat information" as UC5
usecase "maintain dock and slip information" as UC6
}
rectangle BoatService{
usecase "handling the boat" as UC13
usecase "painting the bottom" as UC14
usecase "working on the engine" as UC15
}
rectangle LeaseManagement{
usecase "lease slip" as UC7
usecase "renew slip lease" as UC8
usecase "transfer lease" as UC9
usecase "process reports" as UC10
}
rectangle BillingService{
usecase "generate bill for slip lease" as UC11
usecase "generate bill for boat service" as UC12
usecase "record payments" as UC16
usecase "send late notice" as UC17
usecase "produce account receivable" as UC18
usecase "accounting reports" as UC19
}
mm --> UC1
mm --> UC2
mm --> UC3
mm --> UC4
mm --> UC5
mm --> UC6
mm --> UC7
mm --> UC8
mm --> UC9
mm --> UC10
mm --> UC11
mm --> UC12
mm --> UC13
mm --> UC14
mm --> UC15
mm --> UC16
mm --> UC17
mm --> UC18
mm --> UC19
note "Customer Information:\n\tName\n\tAddress\n\tPhoneNO" as N1
note "Updated Customer Information" as N2
note right of UC1
query by
customer's name
phoneNo
address key words
end note
note right of UC4
Boat Information
end note
note right of UC5
Updated Boat Information
end note
note right of UC6
Dock Information
Slip Information
end note
note right of UC7
Lease Information
Slip Information
end note
note right of UC8
Lease Information
end note
nc .. N1
N1 .. UC2
ec .. N2
N2 .. UC3
@enduml | false | true | false | false | usecase |
78fe12f838b5cc9c8934ad2935e065f452f1c034 | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/administrator tu/EditSuratMasuk.puml | d200bb6747245b87781376c76e31a22446f8aca1 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 1,462 | puml | @startuml
autonumber
hide footbox
title Mengubah Surat Masuk
Actor AdministratorTU
boundary Dashboard_V
boundary SuratMasuk_V
boundary EditSuratMasuk_V
control Admin_C
control SuratMasuk_C
Entity SuratMasuk_E
Admin_C --> Dashboard_V: load->view()
Dashboard_V --> AdministratorTU: Halaman Dashboard
AdministratorTU --> Dashboard_V: klik menu Surat Masuk
Dashboard_V --> SuratMasuk_C: index()
SuratMasuk_C --> SuratMasuk_E:
SuratMasuk_E --> SuratMasuk_C:
SuratMasuk_C --> SuratMasuk_V: load->view()
SuratMasuk_V --> AdministratorTU: Halaman Surat Masuk
AdministratorTU --> SuratMasuk_V: klik tombol Edit Surat Masuk
SuratMasuk_V --> SuratMasuk_C: editmail()
SuratMasuk_C --> EditSuratMasuk_V: load->view()
EditSuratMasuk_V --> AdministratorTU: Halaman Edit Surat Masuk
AdministratorTU --> EditSuratMasuk_V: Mengisi Inputan dan klik tombol Edit
note right of AdministratorTU
Inputan Pengirim, no surat, tanggal surat masuk, ringkasan, file surat masuk
end note
EditSuratMasuk_V --> SuratMasuk_C: editmail()
SuratMasuk_C --> SuratMasuk_E:
alt isValid() case
SuratMasuk_E --> SuratMasuk_C: isValid()
SuratMasuk_C --> SuratMasuk_V: load->view()
SuratMasuk_V --> AdministratorTU: Halaman Surat Masuk
else isInvalid() case
SuratMasuk_E --> SuratMasuk_C: isInValid()
SuratMasuk_C --> EditSuratMasuk_V: load->view()
EditSuratMasuk_V --> AdministratorTU: Halaman Edit Surat Masuk
end
@enduml | false | true | false | false | sequence |
f3e718dffabf5286a21724fd5217e27569318ffb | 78d705afd527555ce802d7dc01c7fec964694237 | /spring-framework-aop/uml.puml | 45eba1ce928d7c193b83eded5fffd5df33eaa0f5 | [
"Apache-2.0"
] | permissive | ToQuery/spring-handbook | beaf8d204b08169b08c4c00efe111b102a950acc | ea4d741c48b5c98d167238f7da7af204a0402812 | refs/heads/master | 2022-12-15T02:14:49.182519 | 2020-09-24T07:40:45 | 2020-09-24T07:40:45 | 155,320,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,087 | puml | @startuml
' -----------------------------------------------------
'skinparam defaultTextAlignment center
' -----------------------------------------------------
'top to bottom direction
'left to right direction
package "org" {
package "aopalliance" #DDDDDD {
package "aop" {
interface Advice
class AspectException
RuntimeException <|-- AspectException
}
package "intercept" {
interface ConstructorInterceptor{
Object construct(ConstructorInvocation invocation) throws Throwable
}
interface ConstructorInvocation {
Constructor<?> getConstructor()
}
Invocation <|-- ConstructorInvocation
interface Interceptor
Advice <|- Interceptor
interface Invocation{
Object[] getArguments()
}
Joinpoint <|-- Invocation
interface Joinpoint{
Object proceed() throws Throwable
Object getThis()
AccessibleObject getStaticPart()
}
interface MethodInterceptor{
Object invoke(MethodInvocation invocation) throws Throwable
}
Interceptor <|-- MethodInterceptor
interface MethodInvocation{
Method getMethod()
}
Invocation <|-- MethodInvocation
}
}
package "springframework.aop" {
interface Advisor{
Advice EMPTY_ADVICE = new Advice(){}
Advice getAdvice()
boolean isPerInstance()
}
interface AfterAdvice{
}
Advice <|- AfterAdvice
interface AfterReturningAdvice{
void afterReturning(@Nullable Object returnValue, Method method, Object[] args, @Nullable Object target) throws Throwable
}
AfterAdvice <|- AfterReturningAdvice
class AopInvocationException
NestedRuntimeException <|-- AopInvocationException
interface BeforeAdvice
Advice <|- BeforeAdvice
interface ClassFilter{
boolean matches(Class<?> clazz);
ClassFilter TRUE = TrueClassFilter.INSTANCE
}
interface DynamicIntroductionAdvice{
boolean implementsInterface(Class<?> intf)
}
Advice <|- DynamicIntroductionAdvice
interface IntroductionAdvisor{
ClassFilter getClassFilter()
void validateInterfaces() throws IllegalArgumentException
}
Advisor <|-- IntroductionAdvisor
IntroductionInfo <|-- IntroductionAdvisor
interface IntroductionAwareMethodMatcher{
boolean matches(Method method, Class<?> targetClass, boolean hasIntroductions)
}
MethodMatcher <|-- IntroductionAwareMethodMatcher
interface IntroductionInfo{
Class<?>[] getInterfaces()
}
interface IntroductionInterceptor{
}
MethodInterceptor <|-- IntroductionInterceptor
DynamicIntroductionAdvice <|-- IntroductionInterceptor
}
}
@enduml | false | true | false | false | class |
cceafd0bc7c997d67245e19c8336402e55e65702 | 8eeaa622bd21c275f3c6995d3f1b3657b68b0618 | /src/Docs/_new/2-internals/1-core/10-erd/_puml/erd-shopware-core-system-saleschannel.puml | 334b9ea8048285ed628a38ad366b709162321408 | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | Gamingpc/platform | 79282f0e78f9346b4fa02a7907975890200d8ac8 | 47169962a2d7fa4b232ad63d3611ac392ba3ddf4 | refs/heads/6.0-dp | 2023-04-06T14:37:58.066081 | 2019-07-15T06:24:42 | 2019-07-15T06:24:42 | 188,271,256 | 3 | 2 | MIT | 2023-04-04T01:25:29 | 2019-05-23T16:35:37 | PHP | UTF-8 | PlantUML | false | false | 11,765 | puml | @startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >>
!define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
hide empty members
skinparam backgroundColor #FFFFFF
' entities
Table(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel\n(Sales Channel)") {
primary_key(id) id
not_null(typeId) foreignKey
not_null(languageId) foreignKey
not_null(customerGroupId) foreignKey
not_null(currencyId) foreignKey
not_null(paymentMethodId) foreignKey
not_null(shippingMethodId) foreignKey
not_null(countryId) foreignKey
not_null(navigationCategoryId) foreignKey
not_null(navigationCategoryVersionId) referenceVersion
footerCategoryId foreignKey
footerCategoryVersionId referenceVersion
serviceCategoryId foreignKey
serviceCategoryVersionId referenceVersion
mailHeaderFooterId foreignKey
name translated
shortName string
not_null(accessKey) string
configuration json
active bool
taxCalculationType string
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemSalesChannelAggregateSalesChannelTranslationSalesChannelTranslationDefinition, "sales_channel_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(salesChannelId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemSalesChannelAggregateSalesChannelCountrySalesChannelCountryDefinition, "sales_channel_country\n(M:N Mapping)") {
primary_key(salesChannelId) foreignKey
primary_key(countryId) foreignKey
}
Table(ShopwareCoreSystemSalesChannelAggregateSalesChannelCurrencySalesChannelCurrencyDefinition, "sales_channel_currency\n(M:N Mapping)") {
primary_key(salesChannelId) foreignKey
primary_key(currencyId) foreignKey
}
Table(ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition, "sales_channel_domain\n(Domain names of a sales channels)") {
primary_key(id) id
not_null(url) string
not_null(salesChannelId) foreignKey
not_null(languageId) foreignKey
not_null(currencyId) foreignKey
not_null(snippetSetId) foreignKey
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemSalesChannelAggregateSalesChannelLanguageSalesChannelLanguageDefinition, "sales_channel_language\n(M:N Mapping)") {
primary_key(salesChannelId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemSalesChannelAggregateSalesChannelPaymentMethodSalesChannelPaymentMethodDefinition, "sales_channel_payment_method\n(M:N Mapping)") {
primary_key(salesChannelId) foreignKey
primary_key(paymentMethodId) foreignKey
}
Table(ShopwareCoreSystemSalesChannelAggregateSalesChannelShippingMethodSalesChannelShippingMethodDefinition, "sales_channel_shipping_method\n(M:N Mapping)") {
primary_key(salesChannelId) foreignKey
primary_key(shippingMethodId) foreignKey
}
Table(ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeSalesChannelTypeDefinition, "sales_channel_type\n(Type)") {
primary_key(id) id
coverUrl string
iconName string
screenshotUrls list
name translated
manufacturer translated
description translated
descriptionLong translated
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeTranslationSalesChannelTypeTranslationDefinition, "sales_channel_type_translation\n((Translations))") {
not_null(name) string
manufacturer string
description string
descriptionLong longTextWithHtml
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(salesChannelTypeId) foreignKey
primary_key(languageId) foreignKey
}
ForeignTable(ShopwareCoreFrameworkLanguageLanguageDefinition, "language") {
}
ForeignTable(ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition, "customer_group") {
}
ForeignTable(ShopwareCoreSystemCurrencyCurrencyDefinition, "currency") {
}
ForeignTable(ShopwareCoreCheckoutPaymentPaymentMethodDefinition, "payment_method") {
}
ForeignTable(ShopwareCoreCheckoutShippingShippingMethodDefinition, "shipping_method") {
}
ForeignTable(ShopwareCoreSystemCountryCountryDefinition, "country") {
}
ForeignTable(ShopwareCoreCheckoutOrderOrderDefinition, "order") {
}
ForeignTable(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer") {
}
ForeignTable(ShopwareCoreSystemSystemConfigSystemConfigDefinition, "system_config") {
}
ForeignTable(ShopwareCoreContentCategoryCategoryDefinition, "category") {
}
ForeignTable(ShopwareCoreContentProductAggregateProductVisibilityProductVisibilityDefinition, "product_visibility") {
}
ForeignTable(ShopwareCoreContentMailTemplateAggregateMailHeaderFooterMailHeaderFooterDefinition, "mail_header_footer") {
}
ForeignTable(ShopwareCoreContentNewsletterReceiverNewsletterReceiverDefinition, "newsletter_receiver") {
}
ForeignTable(ShopwareCoreContentMailTemplateAggregateMailTemplateSalesChannelMailTemplateSalesChannelDefinition, "mail_template_sales_channel") {
}
ForeignTable(ShopwareCoreSystemNumberRangeAggregateNumberRangeSalesChannelNumberRangeSalesChannelDefinition, "number_range_sales_channel") {
}
ForeignTable(ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition, "promotion_sales_channel") {
}
ForeignTable(ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigSalesChannelDocumentBaseConfigSalesChannelDefinition, "document_base_config_sales_channel") {
}
ForeignTable(ShopwareStorefrontFrameworkSeoSeoUrlSeoUrlDefinition, "seo_url") {
}
ForeignTable(ShopwareStorefrontFrameworkSeoSeoUrlTemplateSeoUrlTemplateDefinition, "seo_url_template") {
}
ForeignTable(ShopwareCoreFrameworkSnippetAggregateSnippetSetSnippetSetDefinition, "snippet_set") {
}
' relationshipd
ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeSalesChannelTypeDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTranslationSalesChannelTranslationDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelCurrencySalesChannelCurrencyDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelLanguageSalesChannelLanguageDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelCountrySalesChannelCountryDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelPaymentMethodSalesChannelPaymentMethodDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelShippingMethodSalesChannelShippingMethodDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreCheckoutPaymentPaymentMethodDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreSystemSystemConfigSystemConfigDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreContentProductAggregateProductVisibilityProductVisibilityDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreContentMailTemplateAggregateMailHeaderFooterMailHeaderFooterDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreContentNewsletterReceiverNewsletterReceiverDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreContentMailTemplateAggregateMailTemplateSalesChannelMailTemplateSalesChannelDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreSystemNumberRangeAggregateNumberRangeSalesChannelNumberRangeSalesChannelDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigSalesChannelDocumentBaseConfigSalesChannelDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareStorefrontFrameworkSeoSeoUrlSeoUrlDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareStorefrontFrameworkSeoSeoUrlTemplateSeoUrlTemplateDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTranslationSalesChannelTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelCountrySalesChannelCountryDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelCurrencySalesChannelCurrencyDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition --> ShopwareCoreFrameworkSnippetAggregateSnippetSetSnippetSetDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelLanguageSalesChannelLanguageDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelPaymentMethodSalesChannelPaymentMethodDefinition --> ShopwareCoreCheckoutPaymentPaymentMethodDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelShippingMethodSalesChannelShippingMethodDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeTranslationSalesChannelTypeTranslationDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeSalesChannelTypeDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeTranslationSalesChannelTypeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
@enduml
| false | true | false | false | uml-unknown |
43513b3f166cb19c4fe5f3c1371c9f0d4bf32126 | d30e6f2ca0ad9c683497e437298dd8506de9ad89 | /app/src/main/java/com/droidsoft/pnrtracker/syncinterface/SyncImpl.puml | 46e3a4d507142ebd3fe6b88ecfdcabd38188c168 | [] | no_license | Mitesh-82/pnrtracker | a0d49f1512544227340cb7b86eb83fe0aa027987 | 9d253d16dccfa971b65453a5da8e4b91900480ae | refs/heads/master | 2016-08-06T12:20:07.794361 | 2015-06-02T04:34:59 | 2015-06-02T04:34:59 | 23,819,200 | 0 | 0 | null | 2014-10-19T03:39:05 | 2014-09-09T04:21:01 | Java | UTF-8 | PlantUML | false | false | 369 | puml | @startuml
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection
List <|-- AbstractList
Collection <|-- AbstractCollection
Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
class Arrayelement {
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml | false | true | false | false | class |
f006c3765a04298c59279bf85891bc42cb5e8470 | 60db5a6d9cec64022c685514fa58607b05d65e8f | /src/UML/clearItems.puml | 457d760c4ff51cd6d09a759de5e7c283de5ac574 | [] | no_license | rob0302/McQueen-COP3330-assignment4part2 | 88c7ab19714afe7dc160731da5a673f8711d5f62 | 30ce1441a674701e049fd6c83551e53c8b8bf2c4 | refs/heads/master | 2023-09-03T09:10:47.796103 | 2021-11-16T01:21:17 | 2021-11-16T01:21:17 | 428,475,353 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 53 | puml | @startuml
class clearItems{
clearList
}
@enduml | false | true | false | false | class |
081c589af4a9cc5d3fa9437373458daf59bd239e | 219f030ff6f9002578859d80f778ef70bfabdbbc | /builder/builder_flow.puml | 1e9cc47fb1dc4f4558ac5780cf20d638ebca1c43 | [] | no_license | haishenming/go_design_pattern | 2dc317a8f5173314efecabd37e51b4985cc6d7bc | c597a858a51121684972dbb1448753bb5497e215 | refs/heads/master | 2021-04-17T00:30:37.490217 | 2020-03-27T02:24:12 | 2020-03-27T02:24:12 | 249,396,497 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 338 | puml | @startuml
actor iMain
collections Director
collections ConcreteBuilder
iMain -> ConcreteBuilder: 1.create
iMain -> Director: 2.setBuilder
iMain -> Director: 3.constuct
Director -> ConcreteBuilder: buildPartA
Director -> ConcreteBuilder: buildPartB
Director -> ConcreteBuilder: buildPartC
Director -> ConcreteBuilder: getResult
@enduml | false | true | false | false | sequence |
d4eec410f065db4a436ee9e1c7b9df8d30258bd7 | bab91acf5a15cf5a1bfd5c24af68e1067e667182 | /use-case-diagram/Homework/Lab-submit/60030049/homework1.1.puml | 1c7641937d001f03d5be5034a77aeb9100a0bfd5 | [] | no_license | OOAD2563/PlantUML-Labs | e216e7b8c399942e4d344ee8f4b81ca90a665f5a | 3c5b6208843e5a4c2d88b99a4d2dc403baecae3d | refs/heads/master | 2022-04-23T12:28:24.897045 | 2020-04-15T17:03:44 | 2020-04-15T17:03:44 | 255,678,930 | 0 | 1 | null | 2020-04-14T17:32:51 | 2020-04-14T17:32:51 | null | UTF-8 | PlantUML | false | false | 561 | puml | ```puml
@startuml home1
left to right direction
skinparam rectangle{
BorderColor LawnGreen
FontColor Green
}
skinparam actor{
BackgroundColor Green
BorderColor Green
FontColor Green
}
actor Customer
actor Owner
rectangle "Online Food shop overview"{
Customer--(Member register)
Customer--(Log in)
(Manage Goods)--Owner
(Log in) -- Owner
Customer--(Make Order)
(Print Slips)--Owner
}
skinparam usecase {
BackgroundColor RoyalBlue
BorderColor RoyalBlue
FontColor white
ArrowColor RoyalBlue
}
@enduml
``` | false | true | false | false | usecase |
27589c84d4a81bb058e682414b485f9e93ae2363 | f09a123ee1698a5fded15f43fe3741f0c75cf2ba | /docs/puml/group_restart.puml | e79d1f2218440bbb7a8a31412ac7b3324a88c1e9 | [] | no_license | kyopark2014/webchat | 50f8f0533a1043897712dd1d46cfee884847170e | ef020959d061892adea2960eb4d8a6ced2a1903f | refs/heads/master | 2022-11-18T15:59:58.389836 | 2020-06-25T12:13:35 | 2020-06-25T12:13:35 | 269,232,605 | 6 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,605 | puml | @startuml callflow
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
AttributeIconSize 0
}
'skinparam style strictuml
skinparam stereotypeCBackgroundColor White
skinparam stereotypeIBackgroundColor White
skinparam stereotypeEBackgroundColor White
skinparam stereotypeABackgroundColor White
skinparam linetype ortho
'title "Basic Flow 1-to-1 (PUBSUB))"
hide footbox
actor A
actor B
actor C
participant IM1
participant IM2
participant IM3
database DB
queue PUBSUB
== The chat session was not exist any more in server ==
A -> IM1 : "msg" for "g1"
IM1 -> IM1 : no participant list of "g1"
IM1 -> DB ++: load participant list
return no participant list
IM1 -> A : "RESTART g1"
note over A
"JOIN" event will be generated
based on the call log after "RESTART"
end note
A -> IM1 : JOIN "g1" with participant list
IM1 -> IM1 : start reactivation
IM1 -> DB : save participant list based on participant list of A
IM1 -> PUBSUB : SUBSCRIBE "g1"
IM1 -> PUBSUB : PUBLISH B "subscribe required for g1"
PUBSUB -> IM2 : "subscribe required for groupID"
IM2 -> DB ++: load participant list
return participant list
IM2 -> PUBSUB: "SUBSCRIBE g1"
IM1 -> PUBSUB : PUBLISH C "subscribe requird for g1"
PUBSUB -> IM3 : "subscribe required for g1"
IM3 -> DB ++: load participant list
return participant list
IM3 -> PUBSUB: "SUBSCRIBE g1"
== groupchat session is ready ==
note over IM1
The stored message will be sent by PUBLISH
end note
IM1 -> PUBSUB : PUBLISH "g1" "msg"
PUBSUB -> IM2 : "msg"
IM2 -> B : "msg"
PUBSUB -> IM3 : "msg"
IM3 -> C : "msg"
@enduml
| false | true | false | false | sequence |
0544c11d899492997487c8de3463cebc78ffd836 | e7b7df0cf36cf83e9c440c3a81f4f85193e37a72 | /3 Class Diagram/11 Using non-letters.puml | a24a4b46bfcf9d2d945ece2dc754af644029fa8d | [
"MIT"
] | permissive | jys129/PlantUML | 38dd154cc9a45d3206abf26f95bfb45e32d4c186 | f0e62bf90332a1a541ded76d2101ebdd9215adaa | refs/heads/master | 2023-03-16T15:54:12.053012 | 2020-10-18T15:49:08 | 2020-10-18T15:49:08 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 123 | puml | @startuml
class "This is my class" as class1
class class2 as "It works this way too"
class2 *-- "foo/dummy" : use
@enduml | false | true | false | false | class |
14a7792abdf130bf0635cfe082fad8e1ca196183 | 253ac798fe1232e53637f1e97dce7192e7ed5fbf | /docs/TodoList.puml | 39800b1e97f4bd8267a6c6cca52555192c2469f0 | [] | no_license | Leo2399/herrera-app1-impl | afb07d69e10533d25ce2ba9847ac893ee5f11ba4 | 3172e90ba005d44a4b4f5aa878f887a8ad0d9575 | refs/heads/main | 2023-08-28T15:28:18.975019 | 2021-11-08T02:45:08 | 2021-11-08T02:45:08 | 423,351,927 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,888 | puml | @startuml
class TodoListApplication {
+start (): void
+main (): void
}
Application <|-- TodoListApplication
class TodoListController {
-MenuBar fileMenu
-TextField descriptionTextField
-TextField titleTextField
-TableView<Events> itemList
-TableColumn<Events, String> titleCol
-TableColumn<Events, String> descriptionCol
-TableColumn<Events, LocalDate> dateCol
-TableColumn<Events, String> statusCol
-ComboBox<String> filterBox
addTask (ActionEvent event): void
clearList (ActionEvent event): void
deleteTask (ActionEvent event): void
openExistingFile (ActionEvent event): void
viewCompleted (ActionEvent event): void
viewIncompleted (ActionEvent event): void
writeToFile (ActionEvent event): void
}
class Events {
-SimpleStringProperty title
-SimpleStringProperty description
-SimpleObjectProperty<LocalDate> dueDate
+Events (String title, String description)
+getTitle ():String
+setTitle (String title):void
+titleProperty ():SimpleStringProperty
+getDescription ():String
+setDescription (String description):void
+descriptionProperty ():SimpleStringProperty
+getDueDate ():LocalDate
+setDueDate (LocalDate dueDate):void
+dueDateProperty ():SimpleObjectProperty<LocalDate>
}
TodoListController<--Events
class LocalDateTableCell{
-DateTimeFormatter formatter
-DatePicker datePicker
+LocalDateTableCell(TableColumn<Events, LocalDate> dateTableColumn)
#updateItem(LocalDate item, boolean empty): void
}
class WrapAndEditCell {
-Text cellText
+WrapAndEditCell ()
+updateItem (String item, boolean empty):void
+cancelEdit ():void
-createText ():Text
}
TodoListController <-- LocalDateTableCell
TodoListController <-- WrapAndEditCell
TextFieldTableCell <|-- WrapAndEditCell
TableCell <|-- LocalDateTableCell
@enduml | false | true | false | false | class |
9453b1316fd7612c68bbd7149fb99efaf354d235 | b7341581abaf2fb50e10e14911cc579e606a23d2 | /docs/_static/create_new_ledger.plantuml | c1f467f4c07faa4d838f6e29e64fe969b31571ab | [
"Apache-2.0"
] | permissive | GarlonHasham/sirius-sdk-python | 3e627af6c2b3ef641b27514787fb08d0e0b30808 | 715b12c910574d78502f186aa512bc1ef5b63fbc | refs/heads/master | 2023-05-14T03:56:29.141362 | 2021-06-03T10:42:01 | 2021-06-03T10:42:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 944 | plantuml | @startuml
title Microledger
== Step-1: Propose [initialize-request] ==
Actor -[#red]> Paticipant_1: Propose
Actor -[#red]> Paticipant_2: Propose
Actor -[#red]> Paticipant_N: Propose
hnote over Actor : Idle: Wait for all responses at given timeout
== Step-2: Pre-Commit [initialize-response] ==
Paticipant_1 -[#blue]> Actor: accept creation and verify with self-signature
Paticipant_2 -[#blue]> Actor: accept creation and verify with self-signature
Paticipant_N -[#blue]> Actor: accept creation and verify with self-signature
hnote over Actor : Check responses: validate signatures and ledger state consistancy
== Step-3: Commit [ack] ==
Actor -[#green]> Paticipant_1: consistency among all participants is OK
Actor -[#green]> Paticipant_2: consistency among all participants is OK
Actor -[#green]> Paticipant_N: consistency among all participants is OK
hnote over Actor : All participants has Ledger with same Merkle-Tree root hash
@enduml
| false | true | false | false | sequence |
9a56ab9bce323920ea60d514b8007314da731eb1 | da291450ca3367bcd97e7c05ebd6b09d8093e441 | /cdbookstore/docs/architecture-ui.puml | d0b09f62ad1737f91ab33b6968629408dbf5c3b1 | [] | no_license | r14r/Angular_Working-with_Microservices | 52de3f3a680e0b1e86ebec2df78c0c3fae28cc6c | cb4e189aecd99b3ab2ab475fc97449a84ff6f870 | refs/heads/master | 2022-12-28T13:10:54.654315 | 2020-09-28T10:24:38 | 2020-09-28T10:24:38 | 296,331,187 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 555 | puml | @startuml
left to right direction
actor "Users" as user
actor "Admin" as admin
node "User Interface" as ui #f8f9fa {
rectangle "Store" as rctstr #e3f2fd
rectangle "Inventory" as rctinv #007bff
rectangle "Generator" as rctgen #343a40
}
node "Store API" as strapi #e3f2fd
node "Inventory API" as invapi #007bff
node "Generator API" as genapi #343a40
database "Store" as dbstr #e3f2fd
database "Inventory" as dbinv #007bff
user ..> ui
admin ..> ui
rctstr ..> strapi
rctinv ..> invapi
rctgen ..> genapi
strapi --> dbstr
invapi --> dbinv
@enduml
| false | true | false | false | sequence |
8e0eb2e62c7b906e6166419dfc79294ac1e413a7 | 9d7c8260b9d6c4217c0ec446d023abe0102e2b6f | /diagrams/gitops-simple.puml | f1855a4c1010d0199b916bab7341fae6f3e6f313 | [
"MIT"
] | permissive | greenstevester/k8s-diagrams | c779ad9a909c816e86a6959ec7902ca46a3681a4 | 8c62b3618809988bd5218f4ea2b1506db00f2e7d | refs/heads/master | 2023-08-21T16:38:52.324768 | 2021-09-13T12:11:59 | 2021-09-13T12:11:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,942 | puml | @startuml
!includeurl https://raw.githubusercontent.com/michiel/plantuml-kubernetes-sprites/master/resource/k8s-sprites-unlabeled-full.iuml
!define ICONURL https://raw.githubusercontent.com/tupadr3/plantuml-icon-font-sprites/v2.0.0
!includeurl ICONURL/common.puml
!includeurl ICONURL/devicons/git.puml
!includeurl ICONURL/font-awesome-5/jenkins.puml
!includeurl ICONURL/font-awesome-5/sync.puml
!define CLOUDOGUURL https://raw.githubusercontent.com/cloudogu/plantuml-cloudogu-sprites/master
!includeurl CLOUDOGUURL/tools/k8s.puml
!includeurl CLOUDOGUURL/dogus/cloudogu.puml
!define CLOUDOGU_BLUE #23a3dd
!define COLOR_ABOVE_TRANSPARENT_BACKGROUND BLACK
' Remove this line for transparent background
skinparam backgroundColor WHITE
title <color:blue><$k8s></color> **GitOps (simple)** <color:blue><$k8s></color>\n
skinparam actorStyle awesome
together {
actor Developer as user
rectangle "<$git>\nGit Repo" as gitRepo
rectangle "<$k8s>\nK8s Cluster" as k8s {
rectangle "<$sync>\nGitOps\noperator" as operator
rectangle "<$k8s>\nAPI-Server" as apiServer
}
}
user -> gitRepo : push
gitRepo <- operator : pull
operator -> apiServer : deploy\ncontinuously\n(declarative)
legend
<color:#23a3dd><$cloudogu></color> [[https://cloudogu.com cloudogu.com]]
end legend
skinparam arrow {
Color COLOR_ABOVE_TRANSPARENT_BACKGROUND
FontColor COLOR_ABOVE_TRANSPARENT_BACKGROUND
}
skinparam actor {
BackgroundColor CLOUDOGU_BLUE
BorderColor #16688d
FontColor COLOR_ABOVE_TRANSPARENT_BACKGROUND
}
skinparam rectangle {
BackgroundColor CLOUDOGU_BLUE
BorderColor #16688d
FontColor WHITE
backgroundColor<<node>> WHITE
FontColor<<node>> CLOUDOGU_BLUE
}
skinparam interface {
BackgroundColor WHITE
BorderColor #16688d
}
skinparam note {
BackgroundColor WHITE
BorderColor #16688d
}
skinparam legend {
BackgroundColor WHITE
BorderColor #16688d
}
@enduml | false | true | false | false | usecase |
c2057037d21265d14876cfdb68db17dd97980948 | 36cb976b603e5322ed48c7802738d6952945751c | /diagram/package-diagram/package-diagram.plantuml | a849d46215d1027146706404b2f59e22c7cdd4ef | [] | no_license | eportfolio-tech/docs | c19e6cc2d02747056329a140f4e2bc93f70cc597 | 0cb887c0a5c3076655876c21d2e2dc06e12bb5f1 | refs/heads/master | 2023-01-08T13:26:53.086181 | 2020-11-05T11:00:34 | 2020-11-05T11:00:34 | 309,687,794 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,922 | plantuml | @startuml
skinparam dpi 300
'skinparam linetype polyline
skinparam linetype ortho
title __Package Diagram__\n
package tech.eportfolio.server <<Folder>> {
package Users <<Folder>> {
}
package "Web Layer" <<Folder>> {
package Controller <<Folder>> {
}
package "Interceptor" <<Folder>> {
}
package "Exception Handler" <<Folder>> {
}
package "Security" <<Folder>> {
}
package "Data Access Object" <<Folder>> {
}
package "Jsend" <<Folder>> {
}
}
package "Service Layer" <<Folder>> {
package "Service Interface" <<Folder>> {
}
package "Service Implementation" <<Folder>> {
}
package "Cached Service Implementation" <<Folder>> {
}
}
package "Persistence Layer" <<Folder>> {
package "Model" <<Folder>> {
}
package "Repository" <<Folder>> {
}
}
package "Common" <<Folder>> {
package "Constant" <<Folder>> {
}
package "Exception" <<Folder>> {
}
package "Constraint" <<Folder>> {
}
package "Validator" <<Folder>> {
}
package "Utility" <<Folder>> {
}
"Constant" -[hidden]-> "Exception"
"Exception" -[hidden]-> "Constraint"
"Constraint" -[hidden]-> "Validator"
"Validator" -[hidden]-> "Utility"
}
package "External Service" <<Folder>> {
}
package "Data Source" <<Folder>> {
}
}
"Web Layer" -[hidden]> "Common"
"Users" -[hidden]> "Web Layer"
"Users" ..> "Web Layer"
"Cached Service Implementation" ..> "Service Interface"
"Service Implementation" ..> "Service Interface"
"Service Layer" ..> "Common"
"Web Layer" ..> "Service Layer"
"Web Layer" ..> "Common"
"Service Layer" ..> "Persistence Layer"
"Web Layer" -[hidden]--> "Service Layer"
"Service Layer" -[hidden]--> "Persistence Layer"
"Service Layer" ..> "Common"
"Persistence Layer" ..> "Data Source"
"Persistence Layer" ..> "Common"
"Service Layer" ..> "External Service"
@enduml
| false | true | false | false | class |
276e82f1fa556e93350d75943b46a72cd80e822d | 756c55488d9f2ad6db4863d31b30dc8e40de4da0 | /qmlcourse/_static/vqc/ru/example_vqc_diagram.plantuml | ad2d327a32fced4a965d446457f317c79e2c1cf3 | [
"CC-BY-4.0"
] | permissive | quantum-ods/qmlcourse | 5ec2922f7a2cf878a0ce36c9db2a76398b2c166d | c65e7d40ec14c57e2aa44715f9846ca394cfef35 | refs/heads/master | 2023-09-04T05:55:20.783786 | 2023-07-24T18:17:38 | 2023-07-24T18:17:38 | 345,003,350 | 64 | 12 | CC-BY-4.0 | 2023-09-11T12:45:39 | 2021-03-06T04:19:25 | TeX | UTF-8 | PlantUML | false | false | 516 | plantuml | @startuml
rectangle "<latex>\mathbf{X}</latex>" as x #40B464
rectangle "<latex>\hat{U}(X)</latex>" as ux #E0535C
rectangle "<latex>\hat{U}(\theta)</latex>" as ut #E0535C
rectangle "<latex>\hat{M}</latex>" as measure #E0535C
rectangle "<latex>L(y, \hat{y})</latex>" as loss #40B464
rectangle "<latex>\frac{dL}{d\theta}</latex>" as grad #40B464
rectangle "<latex>\theta_{n+1} = \theta_n - \gamma G</latex>" as upd #40B464
x --> ux
ux --> ut
ut --> measure
measure --> loss
loss -> grad
upd <-- grad
ut <- upd
@enduml
| false | true | false | false | uml-unknown |
647000d43a33b588ffa04b8365488303108e4a94 | 221c5f448e92489ed23eba7d57e6b7f170456f8c | /diagrams/skeleton_usecases/SequenceDiagram_UseCases_PandaSteps.puml | 60176ff9259a7c3fc7cb35a54a7828ba72bcd5db | [] | no_license | bokovhu/software-project-laboratory-assignment | 04d4dfd5057ee946dcb9e84eb2829460af6f6b1b | 562730be5e4aa8dd1be9fd007618a2a4c28e7d6d | refs/heads/master | 2020-04-24T10:19:42.655964 | 2019-05-15T12:49:02 | 2019-05-15T12:49:02 | 171,890,819 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 735 | puml | @startuml
title Panda steps
participant "panda: JumpyPanda" as panda
participant "target: Tile" as target
participant "pandaStandingOn: Tile" as pandaStandingOn
note over panda
Ebben az esetben a panda egy JumpyPanda,
és nincs általa vezetett állata. A
pandaStandingOn-t a
panda.getStandingOn () függvényhívással
kaphatjuk meg
end note
[-> panda : moveTo (target)
activate panda
panda -> target ++ : accept (panda)
target -> pandaStandingOn ++ : setCurrentAnimal (null)
target <-- pandaStandingOn --
target -> panda ++ : setStandingOn (target)
target <-- panda --
target -> target ++ : setCurrentAnimal (panda)
target <-- target --
panda <-- target -- : true
[<-- panda
deactivate panda
@enduml | false | true | true | false | sequence |
b2707b8b6340595c0c7ab5f7cfef576384a5b4d6 | 5852f6b38b87d13b732b67c8fdef4c22ae215a8f | /docs/diagrams/src/movies14.plantuml | ef555b41403d475c400d48264447d8e2229c58c4 | [] | no_license | ivlago/Refactor | bbc940ba59aa2b397d52c3c041e3b1db97f8b22d | 5fc9ddb4517bc21dba3a8df0b629637b213cff79 | refs/heads/main | 2023-04-05T18:22:56.671516 | 2021-04-22T20:14:21 | 2021-04-22T20:14:21 | 359,514,464 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,072 | plantuml | @startuml movies
class Customer {
- String name;
- List<Rental> rentals;
+ Costumer(String name)
+ void addRental(Rental rental)
+ String getName()
+ String statement()
- double getTotalCharge()
- int getTotalFrequentRenterPoints()
}
class Rental {
- Movie movie;
- int daysRented;
+ Rental(Movie movie, int daysRented)
+ int getDaysRented()
+ Movie getMovie()
+ double getCharge()
+ int getFrequentRenterPoints()
}
class Movie {
+ static final int REGULAR = 0;
+ static final int NEW_RELEASE = 1;
+ static final int CHILDRENS = 2;
- String title;
- Price price;
+ Movie(String title, int priceCode)
+ double getCharge(int daysRented)
+ int getFrequentRenterPoints(int daysRented)
+ int getPriceCode()
+ void setPriceCode(int priceCode)
+ String getTitle()
}
class Price
class RegularPrice {
int getPriceCode()
}
class ChildrenPrice {
int getPriceCode()
}
class NewReleasePrice {
int getPriceCode()
}
Customer o-down-> Rental
Rental -down-> Movie
Movie *-down- Price
Price <|-down- RegularPrice
Price <|-down- ChildrenPrice
Price <|-down- NewReleasePrice
@enduml
| false | true | false | false | class |
df3ae68839d1ba4f4a90f322e2c06c9888223aef | ee6841e96c76962e9f74ba032a25d2e923b7e42c | /tech-apache/apache-lang/src/main/resources/mybatis/mybatis.puml | 4da5574feeb2197498ed761af28a34782988b242 | [] | no_license | physicsLoveJava/java-miscellaneous | 614cfbad7dd7679e99c561b210ebbbf1a9df941e | e7563fdc9b5f955662cba40fc48614e45747d020 | refs/heads/master | 2021-07-19T13:30:51.096326 | 2019-01-21T09:09:50 | 2019-01-21T09:09:50 | 105,858,854 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 11,483 | puml | @startuml
annotation Arg
annotation AutomapConstructor
annotation CacheNamespace
annotation CacheNamespaceRef
annotation Case
annotation ConstructorArgs
annotation Delete
annotation DeleteProvider
annotation Flush
annotation Insert
annotation InsertProvider
annotation Lang
annotation Many
annotation MapKey
annotation Mapper
annotation One
annotation Options
annotation Param
annotation Property
annotation Result
annotation ResultMap
annotation Results
annotation ResultType
annotation Select
annotation SelectKey
annotation SelectProvider
annotation TypeDiscriminator
annotation Update
annotation UpdateProvider
class BindingException extends PersistenceException
class MapperMethod
class MapperProxy implements InvocationHandler, Serializable
class MapperProxyFactory
class MapperRegistry
class MapperAnnotationBuilder
class MethodResolver
class ProviderSqlSource implements SqlSource
abstract class BaseBuilder
class BuilderException extends PersistenceException
class CacheRefResolver
class IncompleteElementException extends BuilderException
interface InitializingObject
class MapperBuilderAssistant extends BaseBuilder
class ParameterExpression extends HashMap
class ResultMapResolver
class SqlSourceBuilder extends BaseBuilder
class StaticSqlSource implements SqlSource
class XMLConfigBuilder extends BaseBuilder
class XMLIncludeTransformer
class XMLMapperBuilder extends BaseBuilder
class XMLMapperEntityResolver implements EntityResolver
class XMLStatementBuilder extends BaseBuilder
interface Cache
class CacheException extends PersistenceException
class CacheKey implements Cloneable, Serializable
class BlockingCache implements Cache
class FifoCache implements Cache
class LoggingCache implements Cache
class LruCache implements Cache
class ScheduledCache implements Cache
class SerializedCache implements Cache
class SoftCache implements Cache
class SynchronizedCache implements Cache
class TransactionalCache implements Cache
class WeakCache implements Cache
class PerpetualCache implements Cache
class NullCacheKey extends CacheKey
class TransactionalCacheManager
interface Cursor extends Closeable, Iterable
class DefaultCursor implements Cursor
class DataSourceException extends PersistenceException
interface DataSourceFactory
class JndiDataSourceFactory implements DataSourceFactory
class PooledConnection implements InvocationHandler
class PooledDataSource implements DataSource
class PooledDataSourceFactory extends UnpooledDataSourceFactory
class PoolState
class UnpooledDataSource implements DataSource
class UnpooledDataSourceFactory implements DataSourceFactory
class ExceptionFactory
class IbatisException extends RuntimeException
class PersistenceException extends IbatisException
class TooManyResultsException extends PersistenceException
abstract class BaseExecutor implements Executor
class BatchExecutor extends BaseExecutor
class BatchExecutorException extends ExecutorException
class BatchResult
class CachingExecutor implements Executor
class ErrorContext
enum ExecutionPlaceholder
interface Executor
class ExecutorException extends PersistenceException
class Jdbc3KeyGenerator implements KeyGenerator
interface KeyGenerator
class NoKeyGenerator implements KeyGenerator
class SelectKeyGenerator implements KeyGenerator
abstract class AbstractEnhancedDeserializationProxy
abstract class AbstractSerialStateHolder implements Externalizable
class CglibProxyFactory implements ProxyFactory
class CglibSerialStateHolder extends AbstractSerialStateHolder
class CglibProxyFactory extends org.apache.ibatis.executor.loader.cglib.CglibProxyFactory
class JavassistProxyFactory implements org.apache.ibatis.executor.loader.ProxyFactory
class JavassistSerialStateHolder extends AbstractSerialStateHolder
class JavassistProxyFactory extends org.apache.ibatis.executor.loader.javassist.JavassistProxyFactory
interface ProxyFactory
class ResultLoader
class ResultLoaderMap
interface WriteReplaceInterface
interface ParameterHandler
class DefaultMapResultHandler implements ResultHandler
class DefaultResultContext implements ResultContext
class DefaultResultHandler implements ResultHandler
class ResultMapException extends PersistenceException
class ResultExtractor
class DefaultResultSetHandler implements ResultSetHandler
class PrimitiveTypes
interface ResultSetHandler
class ResultSetWrapper
class ReuseExecutor extends BaseExecutor
class SimpleExecutor extends BaseExecutor
abstract class BaseStatementHandler implements StatementHandler
class CallableStatementHandler extends BaseStatementHandler
class PreparedStatementHandler extends BaseStatementHandler
class RoutingStatementHandler implements StatementHandler
class SimpleStatementHandler extends BaseStatementHandler
interface StatementHandler
class StatementUtil
class ClassLoaderWrapper
class DefaultVFS extends VFS
class ExternalResources
class JBoss6VFS extends VFS
class ResolverUtil
class Resources
abstract class VFS
abstract class AbstractSQL
enum Null
class RuntimeSqlException extends RuntimeException
class ScriptRunner
class SelectBuilder
class SQL extends AbstractSQL
class SqlBuilder
class SqlRunner
annotation UsesJava7
annotation UsesJava8
class JakartaCommonsLoggingImpl implements org.apache.ibatis.logging.Log
abstract class BaseJdbcLogger
class ConnectionLogger extends BaseJdbcLogger implements InvocationHandler
class PreparedStatementLogger extends BaseJdbcLogger implements InvocationHandler
class ResultSetLogger extends BaseJdbcLogger implements InvocationHandler
class StatementLogger extends BaseJdbcLogger implements InvocationHandler
class Jdk14LoggingImpl implements Log
interface Log
class Log4jImpl implements Log
class Log4j2AbstractLoggerImpl implements Log
class Log4j2Impl implements Log
class Log4j2LoggerImpl implements Log
class LogException extends PersistenceException
class LogFactory
class NoLoggingImpl implements Log
class Slf4jImpl implements Log
class Slf4jLocationAwareLoggerImpl implements Log
class Slf4jLoggerImpl implements Log
class StdOutImpl implements Log
class BoundSql
class CacheBuilder
interface DatabaseIdProvider
class DefaultDatabaseIdProvider extends VendorDatabaseIdProvider
class Discriminator
class Environment
enum FetchType
class MappedStatement
class ParameterMap
class ParameterMapping
enum ParameterMode
enum ResultFlag
class ResultMap
class ResultMapping
enum ResultSetType
enum SqlCommandType
interface SqlSource
enum StatementType
class VendorDatabaseIdProvider implements DatabaseIdProvider
class GenericTokenParser
class ParsingException extends PersistenceException
class PropertyParser
interface TokenHandler
class XNode
class XPathParser
interface Interceptor
class InterceptorChain
annotation Intercepts
class Invocation
class Plugin implements InvocationHandler
class PluginException extends PersistenceException
annotation Signature
class ArrayUtil
class DefaultReflectorFactory implements ReflectorFactory
class ExceptionUtil
class DefaultObjectFactory implements ObjectFactory, Serializable
interface ObjectFactory
class GetFieldInvoker implements Invoker
interface Invoker
class MethodInvoker implements Invoker
class SetFieldInvoker implements Invoker
class Jdk
class MetaClass
class MetaObject
class ParamNameResolver
class ParamNameUtil
class PropertyCopier
class PropertyNamer
class PropertyTokenizer implements Iterator
class ReflectionException extends PersistenceException
class Reflector
interface ReflectorFactory
class SystemMetaObject
class TypeParameterResolver
abstract class BaseWrapper implements ObjectWrapper
class BeanWrapper extends BaseWrapper
class CollectionWrapper implements ObjectWrapper
class DefaultObjectWrapperFactory implements ObjectWrapperFactory
class MapWrapper extends BaseWrapper
interface ObjectWrapper
interface ObjectWrapperFactory
class DefaultParameterHandler implements ParameterHandler
class RawLanguageDriver extends XMLLanguageDriver
class RawSqlSource implements SqlSource
interface LanguageDriver
class LanguageDriverRegistry
class ScriptingException extends PersistenceException
class ChooseSqlNode implements SqlNode
class DynamicContext
class DynamicSqlSource implements SqlSource
class ExpressionEvaluator
class ForEachSqlNode implements SqlNode
class IfSqlNode implements SqlNode
class MixedSqlNode implements SqlNode
class OgnlCache
class OgnlClassResolver implements ClassResolver
class SetSqlNode extends TrimSqlNode
interface SqlNode
class StaticTextSqlNode implements SqlNode
class TextSqlNode implements SqlNode
class TrimSqlNode implements SqlNode
class VarDeclSqlNode implements SqlNode
class WhereSqlNode extends TrimSqlNode
class XMLLanguageDriver implements LanguageDriver
class XMLScriptBuilder extends BaseBuilder
enum AutoMappingBehavior
enum AutoMappingUnknownColumnBehavior
class Configuration
class DefaultSqlSession implements SqlSession
class DefaultSqlSessionFactory implements SqlSessionFactory
enum ExecutorType
enum LocalCacheScope
interface ResultContext
interface ResultHandler
class RowBounds
interface SqlSession extends Closeable
class SqlSessionException extends PersistenceException
interface SqlSessionFactory
class SqlSessionFactoryBuilder
class SqlSessionManager implements SqlSessionFactory, SqlSession
enum TransactionIsolationLevel
class JdbcTransaction implements Transaction
class JdbcTransactionFactory implements TransactionFactory
class ManagedTransaction implements Transaction
class ManagedTransactionFactory implements TransactionFactory
interface Transaction
class TransactionException extends PersistenceException
interface TransactionFactory
annotation Alias
class ArrayTypeHandler extends BaseTypeHandler
abstract class BaseTypeHandler extends TypeReference implements TypeHandler
class BigDecimalTypeHandler extends BaseTypeHandler
class BigIntegerTypeHandler extends BaseTypeHandler
class BlobByteObjectArrayTypeHandler extends BaseTypeHandler
class BlobInputStreamTypeHandler extends BaseTypeHandler
class BlobTypeHandler extends BaseTypeHandler
class BooleanTypeHandler extends BaseTypeHandler
class ByteArrayTypeHandler extends BaseTypeHandler
class ByteArrayUtils
class ByteObjectArrayTypeHandler extends BaseTypeHandler
class ByteTypeHandler extends BaseTypeHandler
class CharacterTypeHandler extends BaseTypeHandler
class ClobReaderTypeHandler extends BaseTypeHandler
class ClobTypeHandler extends BaseTypeHandler
class DateOnlyTypeHandler extends BaseTypeHandler
class DateTypeHandler extends BaseTypeHandler
class DoubleTypeHandler extends BaseTypeHandler
class EnumOrdinalTypeHandler extends BaseTypeHandler
class EnumTypeHandler extends BaseTypeHandler
class FloatTypeHandler extends BaseTypeHandler
class IntegerTypeHandler extends BaseTypeHandler
enum JdbcType
class LongTypeHandler extends BaseTypeHandler
annotation MappedJdbcTypes
annotation MappedTypes
class NClobTypeHandler extends BaseTypeHandler
class NStringTypeHandler extends BaseTypeHandler
class ObjectTypeHandler extends BaseTypeHandler
class ShortTypeHandler extends BaseTypeHandler
class SimpleTypeRegistry
class SqlDateTypeHandler extends BaseTypeHandler
class SqlTimestampTypeHandler extends BaseTypeHandler
class SqlTimeTypeHandler extends BaseTypeHandler
class StringTypeHandler extends BaseTypeHandler
class TimeOnlyTypeHandler extends BaseTypeHandler
class TypeAliasRegistry
class TypeException extends PersistenceException
interface TypeHandler
class TypeHandlerRegistry
abstract class TypeReference
class UnknownTypeHandler extends BaseTypeHandler
@enduml | false | true | false | false | class |
ef682c22823f1bd9d08a8a34962e4956e3de14b5 | 9fe3568a2b0e0e3934ba25afd9b55476b6ef92bc | /Labsubmit/60030041/Execute.puml | 40cf50de5a7159a9fb8aa267133c17d46abf519a | [] | no_license | OOAD-041/OOAD-WEEK11 | 2cad533d081d8a330d6729c17ea40d345ffd807c | a60b8e51bbbde8b0203534de6676a3d972435044 | refs/heads/master | 2022-06-20T02:05:59.345451 | 2020-05-03T17:06:00 | 2020-05-03T17:06:00 | 256,806,430 | 0 | 0 | null | 2020-04-18T16:56:42 | 2020-04-18T16:56:42 | null | UTF-8 | PlantUML | false | false | 274 | puml | @startuml
skinparam Shadowing false
skinparam state{
BackgroundColor pink
}
[*]-> Ready
Ready:do/waiting for instruction
Ready->Execute:Called instruction
Execute:executing instruction
Execute-->Display:Executed
Display:wait for user command
Display -left-> [*]
@enduml | false | true | false | false | sequence |
29e1fd5a8d4d038dc74a9e6a9eaac388cd8ce715 | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/administrator/viewrole.puml | 5ba4d669f784c94fd025f49764a0c4d401472062 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 445 | puml | @startuml
autonumber
hide footbox
title Melihat Role
Actor Administrator
boundary Dashvoard_V
boundary Role_V
control Admin_C
Entity Role_E
Admin_C --> Dashvoard_V: load->view()
Dashvoard_V --> Administrator: Halaman Dashvoard
Administrator --> Dashvoard_V: klik menu Role
Dashvoard_V --> Admin_C: Role()
Admin_C --> Role_E:
Role_E --> Admin_C:
Admin_C --> Role_V: load->view()
Role_V --> Administrator: Halaman Role
@enduml | false | true | false | false | sequence |
ea434c310847b1d8235c7528a20dfa38a75decdb | e34a2ed2af9aba5d0b4d576e9d0aeb7f24baeca3 | /examples/sequence.puml | 0a071c1f1ccc9af884ba62d47e839a525ef740df | [] | no_license | grze/archexamples | 704c20fac419574dbceeab4adb40ad86d83da455 | 8e470a48d814af456108aae86a6be08f52d160f9 | refs/heads/master | 2016-08-08T05:01:32.760462 | 2014-08-12T06:45:04 | 2014-08-12T06:45:04 | 19,866,489 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,555 | puml |
@startuml sequence
scale 900 width
'autonumber
== Simple Stuff ==
actor Alice
actor Bob
Alice -> Bob : Hello
Bob -> Long as "This\nis\nvery\nlong"
Long --> Bob : ok
== Special Recipients ==
boundary Boundary
control "Control\nProcess"
entity Entity
database Database
Alice -> Boundary : To boundary
Alice -> Bob : To control
Alice -> Entity : To entity
Alice -> Database : To database
== Self-Message ==
Alice->Alice: This is a \nsignal to self.\nIt also\ndemonstrates\nmultiline \ntext
== Styled Arrows ==
Bob -> Alice
Bob ->> Alice
Bob -\ Alice
Bob \\- Alice
Bob //-- Alice
Bob ->o Alice
Bob o\\-- Alice
Bob <-> Alice
Bob <->o Alice
== Lifetimes ==
Alice -> Boundary: DoWork
activate Boundary #FFBBBB
Entity -> Boundary: Internal call
activate Boundary #DarkSalmon
Entity -> Entity: << createRequest >>
activate Entity
Entity --> Boundary: RequestCreated
deactivate Entity
deactivate Boundary
Boundary -> Alice : Done
deactivate Boundary
== Alternatives and Loops ==
alt successful case
Bob -> Alice: Authentication\nAccepted
else some kind of failure
Bob -> Alice: Authentication\nFailure
group My own label
Alice -> Log : Log attack start
loop 1000 times
Alice -> Bob: DNS Attack
end
Alice -> Log : Log attack end
end
else Another type of failure
Bob -> Alice: Please repeat
end
== Colored ==
Bob -[#red]> Alice : hello
Alice -[#0000FF]->Bob : ok
== Colored with Custom Numbering ==
autonumber 40 2 "<font color=red size=6><b>Message 0 "
Bob -> Alice : Request
Bob <- Alice : Response
@enduml
| false | true | false | false | sequence |
33e91d174bc73d9544d205b76ed42a5b37e47d03 | 952dc09c3e77016f4991d8b2297de32b3e3b45d8 | /docs/rfcs/resources/0011-proposed-deployment-sequence.plantuml | 27f3a0068e2da491f3b7c2a7b7d3121f6601e0fa | [
"CC0-1.0",
"LicenseRef-scancode-public-domain"
] | permissive | CMSgov/beneficiary-fhir-data | 1f3bd5ff9171975bc77e1a4b6971222342bb3bd9 | 0d170907736c5f957b7545ae26b12ba16e0c2550 | refs/heads/master | 2023-08-08T12:53:42.348530 | 2023-08-07T15:27:15 | 2023-08-07T15:27:15 | 203,852,942 | 47 | 34 | NOASSERTION | 2023-09-14T18:25:26 | 2019-08-22T18:41:16 | Java | UTF-8 | PlantUML | false | false | 1,394 | plantuml | @startuml
title Proposed Deployment Sequence (Abbreviated)
participant Jenkins
participant "bfd-db-migrator"
participant "bfd-pipeline"
participant "bfd-server"
database FHIR
note over Jenkins,"bfd-db-migrator": Distinct database migration deployment step
Jenkins -> "bfd-db-migrator": Deploy
group Deployment
note right of "bfd-db-migrator": Recreate ec2\ninstance with\nnew AMI
"bfd-db-migrator" -> "bfd-db-migrator": Bootstrap,\nMigrate,\nValidate
"bfd-db-migrator" -> FHIR: Execute Migrations
FHIR --> "bfd-db-migrator": Changes committed
"bfd-db-migrator" -> FHIR: Hibernate Validations
FHIR --> "bfd-db-migrator": Valid
"bfd-db-migrator" --> Jenkins: Deployment Complete
end
note over Jenkins,"bfd-server": Subsequent deployment stage may remain parallel
Jenkins -> "bfd-pipeline": Deploy
Jenkins -> "bfd-server":
group Deployment
note right of "bfd-server": Update launch template,\nre-create autoscaling group
"bfd-server" -> "bfd-server": Bootstrap
"bfd-server" -> "bfd-server": Serve HTTP Requests
"bfd-server" <-> FHIR: Continued Read Requests
note right of "bfd-pipeline": Recreate ec2\ninstance with\nnew AMI
"bfd-pipeline" -> "bfd-pipeline": Bootstrap
"bfd-pipeline" -> "bfd-pipeline": Run "bfd-pipelines"
"bfd-pipeline" <-> FHIR: Continued Database Interactions
end
@enduml
| false | true | false | false | sequence |
51b77991c197a5a67ed740906c0d5e498eddeaf7 | 16b5991c9ef32803c3cb3a28287f4f7355232431 | /diagramas/paquetes/clase_loguearse_como_operador.plantuml | 6db9c328aa68deb20ad7b95b3b7ea11c283c77e3 | [
"MIT"
] | permissive | NahuFigueroa97/invap-modulo-uml | f70d6d13bf194c0f9e9d141891a0243c0a49e64a | 372bf1495ea2839c4d709e9801f0ed79603c78d9 | refs/heads/main | 2023-07-12T20:43:36.890281 | 2021-08-22T14:13:10 | 2021-08-22T14:13:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 289 | plantuml | @startuml(id=PACKAGE)
!$BussinesLogic = "Logica de Negocio"
!$UseCases = "Caso de Uso"
package "$BussinesLogic" {
package "$UseCases" {
class LoguearseComoOperador {
+ login(id : string, pwd : Credencial)
}
}
}
| false | true | false | false | class |
03dc418a7cf97afb151e65738b7da52f8796d5c4 | 831e34223751ba984839b477e9334a7316b044af | /docs/diagramas/diagramas de paquete/logica_cartas.puml | 6d068af2d7f8132123d75d1d3272247a1a60e566 | [
"MIT"
] | permissive | nauee/Algo3-TP2 | 7163a693b752906e48f416d6a02fad76cd357961 | d1bec97ab04bb6272d851c6627b72d5a0951ab31 | refs/heads/main | 2023-07-11T13:04:23.873792 | 2021-08-12T23:26:02 | 2021-08-12T23:26:02 | 381,121,179 | 6 | 5 | MIT | 2021-08-12T02:33:59 | 2021-06-28T18:05:13 | Java | UTF-8 | PlantUML | false | false | 382 | puml | @startuml
title logica y carta
package modelo {
package logica {
class Batalla
class Juego
}
package carta {
class Carta
interface EstadoCarta
class CartaActivada
class CartaNoActivada
}
CartaActivada ..|> EstadoCarta
CartaNoActivada ..|> EstadoCarta
Carta --> EstadoCarta
Juego --> Carta
}
@enduml | false | true | false | false | class |
a9b1dad06bd3a5574c802f6834a5fce2fa1c94ad | 563205b14249a87f4b56cfaddc74513a8423748f | /src/main/java/ex43/ex43.puml | 4c9b6e2f02621a0f6a04f4cd587ac604be84e185 | [] | no_license | shivpatel35/Patel-cop3330-assignment3 | 00d842b4f09c9a438753cbeb5bd0e8fade96af73 | 6a1ad411e4c9fccd72b919d21ec6a6fe44b6c3af | refs/heads/main | 2023-06-02T05:15:19.344396 | 2021-06-21T02:25:05 | 2021-06-21T02:25:05 | 378,782,327 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 148 | puml | @startuml
'https://plantuml.com/class-diagram
class main{
siteName
author
jsChoice
cssChoice
method filecreator{
file path creation
}
}
@enduml | false | true | false | false | class |
0fdf4d0d5219d918b40db34bffb753d8edbdff76 | 81dc07507f99ccc554d5074b3802294eecca5059 | /doc笔记/启动.puml | bf3642c9ea4042a1b9de6c992916f71cc4b656e2 | [] | no_license | jiebai720/shopDemo | 709542fdb153d4f3e5b22e1e558c175b490e4d99 | 024827873041e0a2135dc1dd95519a376508d5ec | refs/heads/master | 2021-03-30T23:09:35.530184 | 2018-03-13T07:55:10 | 2018-03-13T07:55:10 | 125,012,434 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 303 | puml | @startuml
HttpServlet --> HttpServletBean : init()
HttpServletBean --> FrameworkServlet : initServletBean()
FrameworkServlet --> FrameworkServlet : initWebApplicationContext()
FrameworkServlet --> DispatcherServlet : onRefresh()
DispatcherServlet --> DispatcherServlet : initStrategies()
@enduml | false | true | false | false | sequence |
651721f5ea7ad4a8bf8fba64cfc1dc36c0111ce5 | 00ba2b0faa42bc1fddfc922310ebdeb8f03be1e5 | /app/app.plantuml | b0d002bd65a652bb5980402171ff89e345dfcb2b | [] | no_license | PilekM/FoodliveryApp | f18335d0ea5e884a205557060131747c9fa72a4a | f691bc36becebf4c704cbc46735fd6b575121be6 | refs/heads/master | 2022-04-08T05:44:10.437640 | 2020-03-12T21:46:13 | 2020-03-12T21:46:13 | 218,959,200 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,505 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.example.foodliveryapp {
class com.example.foodliveryapp.BuildConfig {
}
}
namespace com.example.foodliveryapp {
class com.example.foodliveryapp.DailyStatsFragment {
}
}
namespace com.example.foodliveryapp {
class com.example.foodliveryapp.MonthlyStatsFragment {
}
}
namespace com.example.foodliveryapp {
namespace data.form {
class com.example.foodliveryapp.data.form.AvailabilityForm {
}
}
}
namespace com.example.foodliveryapp {
namespace data.form {
class com.example.foodliveryapp.data.form.OpinionForm {
}
}
}
namespace com.example.foodliveryapp {
namespace data.form {
class com.example.foodliveryapp.data.form.RegisterForm {
}
}
}
namespace com.example.foodliveryapp {
namespace data.order {
class com.example.foodliveryapp.data.order.DetailedOrder {
}
}
}
namespace com.example.foodliveryapp {
namespace data.order {
class com.example.foodliveryapp.data.order.OrderStatusType {
}
}
}
namespace com.example.foodliveryapp {
namespace data.price {
class com.example.foodliveryapp.data.price.PriceType {
}
}
}
namespace com.example.foodliveryapp {
namespace database {
class com.example.foodliveryapp.database.RequestHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace database {
interface com.example.foodliveryapp.database.ServerCallback {
}
}
}
namespace com.example.foodliveryapp {
namespace database {
interface com.example.foodliveryapp.database.ServerErrorCallback {
}
}
}
namespace com.example.foodliveryapp {
namespace database {
class com.example.foodliveryapp.database.Services {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.AvailabilityHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.DailyStatsHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.DetailedOrderHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.LoginHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.MonthlyStatsHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.OpinionHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.OrderHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.PermissionHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.ProfileHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.RegisterHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.RestaurantsListHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
class com.example.foodliveryapp.log.WorkersListHandler {
}
}
}
namespace com.example.foodliveryapp {
namespace log {
namespace location {
class com.example.foodliveryapp.log.location.LocationIntent {
}
}
}
}
namespace com.example.foodliveryapp {
namespace log {
namespace location {
class com.example.foodliveryapp.log.location.LocationManager {
}
}
}
}
namespace com.example.foodliveryapp {
namespace log {
namespace location {
class com.example.foodliveryapp.log.location.LocationService {
}
}
}
}
namespace com.example.foodliveryapp {
namespace log {
namespace permission {
class com.example.foodliveryapp.log.permission.GPSandInternetChecker {
}
}
}
}
namespace com.example.foodliveryapp {
namespace log {
namespace permission {
class com.example.foodliveryapp.log.permission.PermissionListener {
}
}
}
}
namespace com.example.foodliveryapp {
namespace log {
namespace session {
class com.example.foodliveryapp.log.session.Session {
}
}
}
}
namespace com.example.foodliveryapp {
namespace recycler.orders {
class com.example.foodliveryapp.recycler.orders.Order {
}
}
}
namespace com.example.foodliveryapp {
namespace recycler.orders {
class com.example.foodliveryapp.recycler.orders.OrdersListAdapter {
}
}
}
namespace com.example.foodliveryapp {
namespace recycler.restaurants {
class com.example.foodliveryapp.recycler.restaurants.Restaurant {
}
}
}
namespace com.example.foodliveryapp {
namespace recycler.restaurants {
class com.example.foodliveryapp.recycler.restaurants.RestaurantsListAdapter {
}
}
}
namespace com.example.foodliveryapp {
namespace recycler.workers {
class com.example.foodliveryapp.recycler.workers.Worker {
}
}
}
namespace com.example.foodliveryapp {
namespace recycler.workers {
class com.example.foodliveryapp.recycler.workers.WorkersListAdapter {
}
}
}
namespace com.example.foodliveryapp {
namespace ui {
class com.example.foodliveryapp.ui.DrawerLayoutBuilder {
}
}
}
com.example.foodliveryapp.DailyStatsFragment -up-|> androidx.fragment.app.Fragment
com.example.foodliveryapp.MonthlyStatsFragment -up-|> androidx.fragment.app.Fragment
com.example.foodliveryapp.log.AvailabilityHandler o-- com.example.foodliveryapp.data.form.AvailabilityForm : form
com.example.foodliveryapp.log.AvailabilityHandler o-- com.example.foodliveryapp.log.session.Session : session
com.example.foodliveryapp.log.DailyStatsHandler o-- com.example.foodliveryapp.log.session.Session : session
com.example.foodliveryapp.log.DetailedOrderHandler o-- com.example.foodliveryapp.data.order.DetailedOrder : detailedOrder
com.example.foodliveryapp.log.MonthlyStatsHandler o-- com.example.foodliveryapp.log.session.Session : session
com.example.foodliveryapp.log.OpinionHandler o-- com.example.foodliveryapp.data.form.OpinionForm : form
com.example.foodliveryapp.log.OpinionHandler o-- com.example.foodliveryapp.log.session.Session : session
com.example.foodliveryapp.log.PermissionHandler o-- com.example.foodliveryapp.log.permission.PermissionListener : permissionListener
com.example.foodliveryapp.log.ProfileHandler o-- com.example.foodliveryapp.log.session.Session : session
com.example.foodliveryapp.log.RegisterHandler o-- com.example.foodliveryapp.data.form.RegisterForm : form
com.example.foodliveryapp.log.location.LocationManager .up.|> android.location.LocationListener
com.example.foodliveryapp.log.location.LocationManager .up.|> com.google.android.gms.common.api.GoogleApiClient.ConnectionCallbacks
com.example.foodliveryapp.log.location.LocationManager .up.|> com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener
com.example.foodliveryapp.log.location.LocationService -up-|> android.app.Service
com.example.foodliveryapp.log.location.LocationService o-- com.example.foodliveryapp.log.session.Session : userSession
com.example.foodliveryapp.log.permission.PermissionListener .up.|> com.karumi.dexter.listener.multi.MultiplePermissionsListener
com.example.foodliveryapp.recycler.orders.OrdersListAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.foodliveryapp.recycler.restaurants.RestaurantsListAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.foodliveryapp.recycler.workers.WorkersListAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
9c00ed1b5d8aea4369f0c90c24018d7eef311217 | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1140780/sprint3/ipc_03.2_updated_class_diagram.puml | a8d52bd4e7a07f97054523c91d8616ad41613370 | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,422 | puml | @startuml doc-files/ipc_03.2_class_diagram_updated.png
class UIController {
-extensions : uiExtension[]
--
+UIController(Cleansheet app)
+getExtensions() : uiExtension[]
}
class ExtensionManager {
-instance : ExtensionManager
-extensionMap : SortedMap<String,Extension>
--
-ExtensionManager()
+load(String ClassName) : SearchExtension
+load(Extension _class)
}
class Extension{
}
class NetworkWorkbookSearchExtension{
-NAME : string
--
+super(String name)
+getUIExtension(UIController controller) : UIExtension
}
class UIExtension{
}
class UIExtensionNetworkWorkbookSearch{
+UISearch(UIController controller);
+getSideBar() : SearchPanel
}
class NetworkWorkbookSearchPanel{
+NetworkWorkbookSearchPanel(UIController uiController, NetworkWorkbookSearchController controller)
}
class NetworkWorkbookSearchController{
+newLocalSearch(UIController uiController, String search)
}
Extension <|-- NetworkWorkbookSearchExtension
UIExtension <|-- UIExtensionNetworkWorkbookSearch
UIController --> ExtensionManager : getExtensions();
ExtensionManager --> NetworkWorkbookSearchExtension : load(Extension extension);
NetworkWorkbookSearchExtension --> UIExtensionNetworkWorkbookSearch : new(UIController controller);
UIExtensionNetworkWorkbookSearch --> NetworkWorkbookSearchPanel : new(UIController controller);
NetworkWorkbookSearchPanel --> NetworkWorkbookSearchController : new(UIController);
@enduml | false | true | false | false | sequence |
66e48f92628d22e1b9b41537cd23147cc429d322 | 70779029a8fbd05f6a0ea5c36e12e8fc6744fe77 | /ApplicationManager/installApp.puml | 29c535ff5a660812b3afba691c965add04126937 | [] | no_license | se-edge/framework-diagrams | 1e526beadb7e2ca73e6762e8761db833bb446826 | f6791b0a2c7b692c66fc076ab5b3c2dca90345f0 | refs/heads/develop | 2021-07-08T02:18:08.117942 | 2021-02-11T13:53:18 | 2021-02-11T13:53:32 | 234,077,942 | 0 | 0 | null | 2021-04-02T14:31:22 | 2020-01-15T12:40:10 | Shell | UTF-8 | PlantUML | false | false | 659 | puml | @startuml
title "ApplicationManager installApp"
!include https://raw.githubusercontent.com/se-edge/diagrams/develop/Participants.puml
[->AM: installApp(json)
AM->EAF ++: [[http://www.plantuml.com/plantuml/proxy?cache=no&src=https://raw.githubusercontent.com/se-edge/diagrams/develop/ApplicationManager/EdgeAppFactory.install.puml&fmt=svg install(json)]]
EAF-->AM --: EdgeApp
AM->Stor ++: saveApplication()
Stor-->AM --:
AM->EApp ++: [[http://www.plantuml.com/plantuml/proxy?cache=no&src=https://raw.githubusercontent.com/se-edge/diagrams/develop/ApplicationManager/ComposeApplication.verify.puml&fmt=svg verify()]]
EApp-->AM --:
AM-->[: EdgeApp
@enduml
| false | true | false | false | sequence |
0740fa55b7d59c2c41e117091fa0f2527ada5717 | 7f2c3c7279d02ef9a0f540cb3f5465ec150fc274 | /Part3/documentation/Diagrams PUML/UC-RSO.puml | 5419a6cd896effbdfe37649811687b02864d44e3 | [] | no_license | UpSkillCobol/lab2 | 50af33d8a3dc2de7d582439bae1d0a2b0661af85 | 0bd40727e16972be0188d9b98865d92752226811 | refs/heads/main | 2023-04-05T14:51:59.017317 | 2021-03-25T16:42:50 | 2021-03-25T16:42:50 | 325,392,334 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 319 | puml | @startuml
left to right direction
header
UpSkillCobol: DeliciousSandwich
endheader
title \nBREADWICH\n
package Registration-Of-Sandwich-Orders {
usecase "UC1: Register Orders" as UC1
usecase "UC2: Search Orders" as UC2
usecase "UC3: Create Report" as UC3
}
Admin --> UC1
Admin --> UC2
Admin --> UC3
@enduml | false | true | false | false | usecase |
e92a1f4b9c134490c054afc9a2d46b9c6069a64a | 41e335a2ded65f95ece1c413fe9d465df1d198b4 | /app/src/main/java/utils_use/text/text.plantuml | 53045eecb7b1bcd4fb0e98de44148c0379ab083e | [
"Apache-2.0"
] | permissive | tulensayyj/DevUtils | ea40e897de72b88591cc1f1cea798eb74175eda8 | 3bc39eaf343c811270bc01e223cd37e80db9e04c | refs/heads/master | 2022-11-27T05:08:28.115620 | 2020-07-27T13:24:50 | 2020-07-27T13:24:50 | 281,569,859 | 0 | 0 | Apache-2.0 | 2020-07-22T03:59:24 | 2020-07-22T03:59:23 | null | UTF-8 | PlantUML | false | false | 428 | plantuml | @startuml
title __TEXT's Class Diagram__\n
namespace utils_use.text {
class utils_use.text.TextCalcUse {
{static} - TAG : String
# textCalcUse()
- TextCalcUse()
- printInfo()
}
}
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 |
b8a5fa9cfa8e5f988cb3c00d1806d119b52dbdef | 8a88be2e482e53297658603e1366ceee6feeaea9 | /Battleship.plantuml | d7c54cf1e37e7fa809aa67f5d1714a81232fc102 | [] | no_license | kksffn/Battleship-game | 5ee55463c94f26c99c9b5aee11ad1f7205a343d8 | 3c742fc063e917f27153b16a3862699d59b7acd2 | refs/heads/master | 2022-12-19T02:28:21.951379 | 2020-08-26T18:29:13 | 2020-08-26T18:29:13 | 290,570,273 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,806 | plantuml | @startuml
title __BATTLESHIP's Class Diagram__\n
package cz.kksffn {
class cz.kksffn.Battleship {
}
}
package cz.kksffn {
package display {
interface cz.kksffn.display.IMap {
}
}
}
package cz.kksffn {
package display {
class cz.kksffn.display.MapInConsole {
}
}
}
package cz.kksffn {
package game {
class cz.kksffn.game.CommunicationWithUser {
}
}
}
package cz.kksffn {
package game {
class cz.kksffn.game.Referee {
}
}
}
package cz.kksffn {
package player {
class cz.kksffn.player.AI {
}
}
}
package cz.kksffn {
package player {
abstract class cz.kksffn.player.APlayer {
}
}
}
package cz.kksffn {
package player {
class cz.kksffn.player.Human {
}
}
}
package cz.kksffn {
package player {
interface cz.kksffn.player.IPlayer {
}
}
}
package cz.kksffn {
package player {
interface cz.kksffn.player.IStrategy {
}
}
}
package cz.kksffn {
package player {
class cz.kksffn.player.Strategy {
}
}
}
package cz.kksffn {
package prepare {
abstract class cz.kksffn.prepare.ASetShips {
}
}
}
package cz.kksffn {
package prepare {
interface cz.kksffn.prepare.ISetShips {
}
}
}
package cz.kksffn {
package prepare {
class cz.kksffn.prepare.SetShipsInConsole {
}
}
}
package cz.kksffn {
package prepare {
enum cz.kksffn.prepare.ShipName {
}
}
}
cz.kksffn.display.MapInConsole .up.|> cz.kksffn.display.IMap
cz.kksffn.game.Referee o-- cz.kksffn.display.IMap : mapOfPlayer1Ships
cz.kksffn.game.Referee o-- cz.kksffn.display.IMap : mapOfPlayersGuesses
cz.kksffn.game.Referee o-- cz.kksffn.player.IPlayer : player1
cz.kksffn.game.Referee o-- cz.kksffn.player.IPlayer : player2
cz.kksffn.player.AI -up-|> cz.kksffn.player.APlayer
cz.kksffn.player.AI o-- cz.kksffn.player.IStrategy : think
cz.kksffn.player.APlayer .up.|> cz.kksffn.player.IPlayer
cz.kksffn.player.APlayer o-- cz.kksffn.prepare.ISetShips : sea
cz.kksffn.player.Human -up-|> cz.kksffn.player.APlayer
cz.kksffn.player.Strategy .up.|> cz.kksffn.player.IStrategy
cz.kksffn.prepare.ASetShips .up.|> cz.kksffn.prepare.ISetShips
cz.kksffn.prepare.ASetShips o-- cz.kksffn.display.IMap : map
cz.kksffn.prepare.SetShipsInConsole -up-|> cz.kksffn.prepare.ASetShips
cz.kksffn.prepare.SetShipsInConsole o-- cz.kksffn.display.IMap : map
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 |
84f68da6f3b642ad958a19634514dea60bc55963 | 2d4bb3ca7187f9d54b0bfe640a1e2dad6ba8be9a | /docs/sequenceDiagram.puml | e28c5ccff9f9f72df919d071049a4ad28af2f6e4 | [] | no_license | kyopark2014/webchat-golang-profile | ac64e347f06da00467d6e549f41eca6363b89c82 | 21f8af5b115923fde3b1274cd39cb0533c1894be | refs/heads/master | 2022-11-13T11:51:02.745288 | 2020-06-25T12:14:58 | 2020-06-25T12:14:58 | 259,326,856 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 786 | puml | @startuml Sequence
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
AttributeIconSize 0
}
'skinparam style strictuml
skinparam stereotypeCBackgroundColor White
skinparam stereotypeIBackgroundColor White
skinparam stereotypeEBackgroundColor White
skinparam stereotypeABackgroundColor White
skinparam linetype ortho
actor user1
actor user2
box "Profile Management"
hide footbox
collections ProfileServer
user1 -> ProfileServer ++ : Insert
database Redis
ProfileServer -> Redis ++ : SetCache
return
database DynamoDB
ProfileServer -> DynamoDB ++ : Write (Json)
return
return 200 OK
user2 -> ProfileServer ++ : Retrieve
ProfileServer -> Redis !! : GetCache
ProfileServer -> DynamoDB ++ : Read
return
return Result (Json)
end box
@enduml
| false | true | false | false | usecase |
b1f6b09cdc4b75355ddf70718fbb3a8eb8eb8e70 | e0656a1860c7c68aa4e6b694360c8bf522331c8e | /conference-management-system/class-diagrams/conference/Presentation.puml | 6d25b0e89a501ba30e11fa37e40e2338ef97872c | [] | no_license | FilipPascuti/Conference-Management-System | 39d3b8705b9b78b06287cef42eca56f0c4edfcc8 | d24a95e59425e55929c654a7ca462b234b71716e | refs/heads/master | 2023-08-04T17:59:14.168995 | 2021-09-22T18:35:06 | 2021-09-22T18:35:06 | 409,313,017 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 221 | puml | @startuml
class Presentation {
- Long pcMemberId
- Long authorId
- Date date
- Time startTime
- Time endTime
}
Presentation <-- PCMember : is moderated by
Presentation <-- Author : presents
@enduml
| false | true | false | false | class |
27ac94489eb2878f1e3fea98f7f4753822f8c553 | aa9620300bc8488f53437e0f5faab824225aab73 | /reweighting_2017/col_aggregating_further_transformations_with_feature_importances_.plantuml | 1bf0001decb695f64706dc8abb341b5b6541932c | [
"BSD-3-Clause"
] | permissive | atavory/atavory.github.io | 94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3 | 43d98b45150411d83ab75a92a6d4ab9226927ef0 | refs/heads/master | 2021-01-19T06:15:43.197765 | 2019-11-18T10:58:38 | 2019-11-18T10:58:38 | 100,634,235 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 481 | plantuml | @startuml
skinparam monochrome true
skinparam shadowing false
left to right direction
skinparam artifact {
BorderColor lightgrey
}
rectangle X0
rectangle X1
interface " " as c0
rectangle SelectKBest
rectangle PCA
interface " " as c1
rectangle RandomForestRegressor
artifact feature_importances_
X0 --> c0
X1 --> c0
c0 --> SelectKBest
c0 --> PCA
SelectKBest --> c1
PCA --> c1
c1 --> RandomForestRegressor
RandomForestRegressor -[#lightgrey]-> feature_importances_
@enduml
| false | true | false | false | class |
9063f7367e35481e578523ceeb43fe430d6839df | 5e8f232619b586a930d7b66f31993f0d7818bfc8 | /source/uml/rln_backend_base_model.puml | 674119d1e985f036708e705ba9c415f7c31a3207 | [] | no_license | androsanta/Thesis | cfdf8ce99c4eb7fdd7a0fc02585265f0e454d7ea | 7a90db288dfeaaef10b60ff282ef13ac44fff6f1 | refs/heads/master | 2023-01-30T09:24:38.868426 | 2020-12-14T10:00:07 | 2020-12-14T10:00:07 | 295,688,015 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 184 | puml | @startuml BaseModel class
class BaseModel {
+id: string
+getById()
+getList()
+add()
+remove()
+update()
+toConfigEntry()
+fromConfigEntry()
}
@enduml | false | true | false | false | class |
57479742aaa494edeec55725776588a126033c4c | 1423267c7da79f77fdec74f3d6c68f173a7d8326 | /Design/Akutuator enhed/Software/AE_Klassediagram/AE_Klassediagram.puml | c043b2772d43c1932d631ee997885427657c34ad | [] | no_license | Solvgraa-mager/E4PRJ4 | 60282c6857f62747ce99aacacab8f7b56efbf28e | 3f54f0415dcb1f5f7269db9653860f4071a17082 | refs/heads/main | 2023-05-08T15:53:25.639820 | 2021-06-03T12:47:11 | 2021-06-03T12:47:11 | 335,742,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,541 | puml | @startuml AE_Klassediagram
class "Aktuatorenhed" as a
{
- _volume: double
- _saltKonc : double
- _saltPumpe : Pumpe*
- _demiPumpe : Pumpe*
- _toemPumpe : Pumpe*
- _varmelegeme : Varmelegeme*
- _PI : PI*
+ Aktuatorenhed(double volume, double saltKonc)
+ setTemperature(temperature) : int
+ setPsu(double setPsu, double currentPsu, double maxPsuChange) : int
+ setWaterLevel(double setWaterLevel, double currentWaterLevel, double currentPsu) : int
+ updateTemperature(double currentTemperature) : int
~ ~Aktuatorenhed()
# addPsu(double amountPsuToAdd) : int
# substractPsu(double amountPsuToSubstract, double currentPsu) : int
# addWater(double ml, double currentPsu) : int
# removeWater(double ml) : int
}
class "Varmelegeme" as v
{
-_GPIO
+Varmelegeme(int GPIO)
+setDutycycle(double dutycycle) : void
~ ~Varmelegeme(int GPIO)
}
class "Pumpe" as p
{
-GPIO
+Pumpe(ing GPIO)
+activatePump(int dutycycle) : void
+deactivatePump(): void
~ ~Pumpe()
}
class "PI" as pi
{
-_Kp : double
-_Ti : double
-_Ts : double
-_minOut : double
-_maxOut : double
-_preError : double
-_preIntegral : double
-_setpoint : double
-_oldSetpoint : double
-_newSetpoint : double
+ PI(double Kp, double Ti, double Ts, double minOut, double maxOut)
+ calculate(double measured, double resultBuffer) : int
+ rateLimiter() : void
}
class "UC3" as u
pi -- a
p "3" - "1"a
a - v
a -- u
@enduml | false | true | false | false | class |
2eb07480c2f8b14cfad6a3ad854a8eb001489518 | 5ae7f8659f18616a10e8d44818e02b83b5e79a80 | /docs/nodered.puml | 076d269dd4410fd905e74b7f5005c51ff0e1d2c7 | [
"MIT"
] | permissive | Svedrin/gatecontrol | e603f185552456f3b3e5651640288b76d9427434 | 1434cf9200dca339e8d0cdb0ab7cf0ba7a77beae | refs/heads/master | 2021-07-11T18:25:04.840869 | 2021-03-10T17:25:03 | 2021-03-10T17:25:03 | 235,448,203 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 740 | puml | @startuml nodered
[*] --> UNKNOWN
BLOCKED -right-> OPEN : OPEN\nAutoclose Pending
OPEN -right-> UNKNOWN : UNKNOWN
UNKNOWN -right-> CLOSED : CLOSED
CLOSED -left-> UNKNOWN : UNKNOWN
UNKNOWN -left-> OPEN : OPEN
OPEN -left-> BLOCKED : BLOCKED
OPEN -down-> CLOSE_WARN : CloseBtn or\nAutoclose Triggered\n-> send CLOSE cmd
CLOSE_WARN -up-> UNKNOWN : COMMIT cmd accepted
CLOSE_WARN -up-> OPEN : COMMIT cmd\nrejected
BLOCKED: Lamp yellow
OPEN: Autoclose off: Lamp green, then off\nAutoclose on: Lamp blue
UNKNOWN: Lamp red
CLOSED: Lamp red, then off
CLOSE_WARN: Lamp blink red 5x,\nthen static red
@enduml
| false | true | false | false | sequence |
3db97e372dadb9bde3e674fc7f46576a443ca1c8 | a9ecd31998bc649276149908354065de88eb78cd | /plantuml/defibrillator_SimpleMAE.puml | 89898323c2d2845b0dd7392a29b20b10818d455a | [] | no_license | Pyponou/defibrillator | 55e5e8c6405d60da1adcad14a8fee2ae9574d7b6 | da212d5ab603f6508829321a139e9832665afe1b | refs/heads/master | 2020-04-10T16:50:14.985769 | 2019-01-06T22:18:17 | 2019-01-06T22:18:17 | 161,156,977 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 609 | puml | @startuml
hide empty description
[*] --> Measurement
'VI is VT | VF'
Measurement -right-> Charging : VI / send(startCharge)
Charging --> Discharge_Enable : capacitor_rdy / switchOn(ledOrange)
Discharge_Enable --> Charging : defibrillate || NoVI / send(deliverShock); switchOff(ledOrange)
Discharge_Enable --> Internal_Discharge : lead_Off /send(abort); switchOff(ledOrange)
Internal_Discharge --> Measurement : lead_On
Charging --> Internal_Discharge : lead_Off || NoVI / send(abort);
Internal_Discharge --> Waiting : lead_Off
Waiting -right-> Measurement : lead_On
Measurement --> Waiting : lead_Off
@enduml
| false | true | false | false | sequence |
d55f3f89bc7b588bb684eedc8f51e80d8c9e4f55 | 92addf9ac745235fb51e5e3a0abd2494db5f9f4b | /src/main/java/ex46/exercise46_UML.puml | b671f0cb7a89f79bd944aaf5c308dad9a07a5c88 | [] | no_license | vishal8557/choday-cop3330-assignment3 | bd61e8060aba52f8d5376e6df2faedc02ed1d3d3 | d81199eae03bf0404114aa812f8c3f50f425e2db | refs/heads/master | 2023-08-31T07:45:19.655353 | 2021-10-11T18:26:49 | 2021-10-11T18:26:49 | 416,053,974 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 473 | puml | @startuml
'https://plantuml.com/sequence-diagram
class App{
- App : ArrayList<listofwords>
- ArrayList<listofwords> -> HOW_MANY_WORDS
- This_is_the_word_name
}
class letscomparenow{
- letscomparenow : Comparator<listofwords>
- itsforsndword -> Lets_count_right_now
}
class listofwords{
- listofwords -> lets_cnt_how_many_there_r
- this.this_for_the_name -> stringname
- Grabbing_the_name_now
-this_for_the_name
-counting_the_number_of_similar_words_in_file_now
}
@enduml | false | true | false | false | class |
74dfc9963a508903b466da0280ae4047611a8421 | 2a0a60c72f3c808a9ee1e002a755cda65aae43a3 | /TP1-KRUG-NEVADO/Ejercicio 1/TP1-PR1-KRUG_Ej1.puml | 83bcca73cd8602f430ec1157a69c571eeceb70fd | [] | no_license | akrugort/Programacion1 | db5c1bb91fef89817051869ac69dcfabe7753ae4 | 3d82db3e73a1fc10373e2632727db8e4f364b904 | refs/heads/master | 2022-06-12T16:15:21.711600 | 2020-05-07T03:37:21 | 2020-05-07T03:37:21 | 260,571,594 | 0 | 0 | null | 2020-05-07T03:37:22 | 2020-05-01T22:36:30 | null | UTF-8 | PlantUML | false | false | 246 | puml | @startuml ArreglosMatrices_Ejercicio1
class claseEjercicio1{
-numeros: int[]
~claseEjercicio1(int cantCeldas)
+desplegarArreglo(): void
+invertir(): void
+hayRepetidos(): boolean
+posiciones(int numero): int[]
}
@enduml | false | true | false | false | class |
1a08583f135e4f6f1e2815ddeffdd6db6345f61a | d68b1330ef8ce59c635f4692417a9192d5206942 | /core/src/no/ntnu/idi/apollo69/uml/core_classes.plantuml | f63d317fc2457b06fbe58f6855c622f9b5750517 | [
"MIT"
] | permissive | GardSteinsvik/apollo-69 | 847f74b762383641db20214ff7b5281c9d63f130 | 96cbf617618075a54613112bc8c0b34215fd50f7 | refs/heads/master | 2021-02-12T20:21:06.214711 | 2020-04-27T16:02:37 | 2020-04-27T16:02:37 | 244,626,902 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 10,967 | plantuml | @startuml
namespace no.ntnu.idi.apollo69.Apollo69 {
class Apollo69 {
- deviceId : String
+ Apollo69()
+ Apollo69()
+ create()
+ dispose()
+ render()
}
class Device {
{static} + DEVICE_ID : String
{static} + NAME : String
}
interface Variables {
{static} + buttonHeight : float
{static} + buttonWidth : float
{static} + fontScale : float
{static} + nicknameHeight : float
{static} + spacing : float
{static} + textExit : String
{static} + textExitGame : String
{static} + textJoin : String
{static} + textPlay : String
{static} + textSettings : String
}
namespace controller {
class GameController {
+ GameController()
+ boostButtonPressed()
+ boostButtonReleased()
+ shootButtonPressed()
+ shootButtonReleased()
+ touchpadMoved()
}
class LobbyController {
+ LobbyController()
+ exitButtonPressed()
+ joinButtonPressed()
}
class MainMenuController {
+ MainMenuController()
+ playButtonPressed()
}
class MatchmakingController {
+ MatchmakingController()
+ cancelMatchmaking()
+ onMatchmakingDone()
+ onShow()
+ startMatchmaking()
}
}
namespace model {
class GameModel {
- HEIGHT : float
- SCREEN_HEIGHT : float
- SCREEN_WIDTH : float
- WIDTH : float
- camera : OrthographicCamera
- textButtons : HashMap<String, TextButton>
+ GameModel()
+ addTextButton()
+ getCamera()
+ getGameEngine()
+ getTextButton()
+ moveCameraToSpaceship()
+ navigateToLobby()
+ renderBackground()
+ renderBoundary()
+ renderNetworkBatch()
+ renderNetworkShapes()
- renderAsteroids()
- renderExplosions()
- renderHealthBar()
- renderPickups()
- renderPowerups()
- renderShieldBar()
- renderSpaceships()
{static} - sortByValue()
- trim()
- updatePlayerScores()
}
class MatchmakingModel {
- connecting : boolean
- connectingFailed : boolean
- matchmakingDone : boolean
- matchmakingListener : Listener
- positionInQueue : int
- queueSize : int
+ MatchmakingModel()
+ dispose()
+ getPositionInQueue()
+ getQueueSize()
+ isConnected()
+ isConnecting()
+ isConnectingFailed()
+ isMatchmakingDone()
+ setConnecting()
+ setConnectingFailed()
+ setMatchmakingDone()
+ setPositionInQueue()
+ setQueueSize()
}
class ServerUpdateListener {
+ received()
~ ServerUpdateListener()
}
class LobbyModel {
}
class MainMenuModel {
}
}
namespace navigation {
class Navigator {
- screen : Screen
+ changeScreen()
+ dispose()
+ getScreen()
- setScreen()
}
enum ScreenType {
GAME
LOBBY
MAIN_MENU
MATCHMAKING
SETTINGS
}
}
namespace network {
class GameClient {
- client : Client
{static} - clientConnecting : boolean
- serverIp : String
- tcpPort : int
- udpPort : int
+ GameClient()
+ connectClient()
+ disconnectClient()
+ getGameState()
{static} + isClientConnecting()
+ isConnected()
+ sendMessage()
+ setGameState()
}
class NetworkClientSingleton {
- client : Client
- defaultServerHost : String
{static} - networkClientSingleton : NetworkClientSingleton
- tcpPort : int
- udpPort : int
+ getClient()
+ getGameClient()
{static} + getInstance()
+ getTcpPort()
+ getUdpPort()
- NetworkClientSingleton()
- getHost()
}
}
namespace view {
class GameView {
- shapeRenderer : ShapeRenderer
- spriteBatch : SpriteBatch
- stage : Stage
+ GameView()
+ hide()
+ render()
+ show()
}
class LobbyView {
- backgroundTexture : Texture
- spriteBatch : SpriteBatch
- stage : Stage
- themeMusic : Music
+ LobbyView()
+ dispose()
+ hide()
+ pause()
+ render()
+ resize()
+ resume()
+ show()
- getFakeHighScoreList()
}
class MainMenuView {
- backgroundTexture : Texture
- spriteBatch : SpriteBatch
- stage : Stage
+ MainMenuView()
+ dispose()
+ hide()
+ pause()
+ render()
+ resize()
+ resume()
+ show()
}
class MatchmakingView {
- bitmapFont : BitmapFont
- spriteBatch : SpriteBatch
- stage : Stage
+ MatchmakingView()
+ dispose()
+ hide()
+ pause()
+ render()
+ resize()
+ resume()
+ show()
- handleInput()
}
}
namespace game_engine {
class Assets {
{static} - COMBINED_ATLAS : String
{static} - EXPLOSIONS_ATLAS : String
{static} - FONT : String
}
class Background {
- backgroundObjects : ArrayList<BackgroundObject>
+ Background()
+ render()
}
class BackgroundObject {
- bounds : Vector2
- position : Vector3
- texture : Texture
~ BackgroundObject()
}
class GameEngine {
- engine : Engine
- gameOver : boolean
- returningToLobby : boolean
- timeAccumulator : float
+ GameEngine()
+ dispose()
+ getEngine()
+ getPlayer()
+ getPlayerControlSystem()
+ isGameOver()
+ isReturningToLobby()
+ setGameOver()
+ update()
}
class GameEngineFactory {
- GAME_UPDATE_SECONDS : float
- NETWORK_UPDATE_SECONDS : float
+ create()
}
namespace components {
class BoosterComponent {
{static} + MAPPER : ComponentMapper<BoosterComponent>
+ boost : float
+ defaultValue : float
}
class BoundingCircleComponent {
{static} + MAPPER : ComponentMapper<BoundingCircleComponent>
+ circle : Circle
}
class PlayableComponent {
{static} + MAPPER : ComponentMapper<PlayableComponent>
}
class PositionComponent {
{static} + MAPPER : ComponentMapper<PositionComponent>
+ position : Vector2
}
class RotationComponent {
{static} + MAPPER : ComponentMapper<RotationComponent>
+ degrees : float
}
class VelocityComponent {
{static} + MAPPER : ComponentMapper<VelocityComponent>
+ idle : float
+ scalar : float
+ velocity : Vector2
}
}
namespace entities {
class SpaceshipFactory {
+ create()
+ createPlayableSpaceship()
}
}
namespace entity_systems {
class BoundsSystem {
- entities : ImmutableArray<Entity>
+ addedToEngine()
+ update()
}
interface InputHandlerInterface {
{abstract} + boost()
{abstract} + move()
{abstract} + shoot()
}
class MovementSystem {
- entities : ImmutableArray<Entity>
+ addedToEngine()
+ update()
}
class PlayerControlSystem {
- player : Entity
+ PlayerControlSystem()
+ boost()
+ move()
+ shoot()
}
class SendPositionSystem {
- interval : float
- player : Entity
- timeAccumulator : float
+ SendPositionSystem()
+ addedToEngine()
+ update()
}
class UpdateGameStateSystem {
- interval : float
- players : ImmutableArray<Entity>
- timeAccumulator : float
+ UpdateGameStateSystem()
+ addedToEngine()
+ update()
- parseGameState()
}
}
}
}
@enduml | false | true | false | false | class |
016ac40c905deda297f172a659c8a58e7be8a2dd | 57fbc019b098405977ffe0e93551d48425ba78d0 | /services/wallet/apple-pay-flow-payment-offline.plantuml | eea24397f8d6d1c5f8ac6a4eecba06cc79d45864 | [] | no_license | 3rdstage/models | 40922c538ad3b56a555817d2258ee5f863002fca | 7d6d41020f53fb39eace3fa3987af63a56d0ace3 | refs/heads/master | 2023-07-19T08:53:40.724866 | 2023-01-09T09:00:46 | 2023-01-09T09:00:46 | 205,056,655 | 0 | 2 | null | 2021-11-04T06:22:06 | 2019-08-29T01:39:54 | D | UTF-8 | PlantUML | false | false | 1,400 | plantuml | ERROR: type should be string, got "\nhttps://plantuml.com/sequence-diagram\n\n@startuml\nHide Footbox\nTitle Apple Pay - Pay Offline\nSkinparam Sequence {\n GroupBorderThickness 1\n GroupBorderShadowing false\n}\nSkinparam BoxPadding 100\n\nActor \"User\" as user\nBox \"Smart Phone\"\nParticipant \"iOS\" as ios\nParticipant \"Wallet\" as wallet\nParticipant \"Secure\\nElement\" as se\nEnd Box\nParticipant \"Payment\\nTerminal\" as terminal\nBox \"Card Network\"\nParticipant \"Card\\nIssuer\" as issuer\nEnd Box\n\nuser -> wallet ++ : Request payment\n user <- wallet : Request authenticaion\n user++\n Alt \"Touch ID\"\n user -> ios : Provide Touch ID\n ios++\n ios -> ios++ : Verify Touch ID\n ios--\n ios--\n Else \"Face ID\"\n user -> ios : Provide Face ID\n ios++\n ios -> ios++ : Verify Face ID\n ios--\n ios--\n Else \"passcode\"\n user -> ios : Provide passcode\n ios++\n ios -> ios++ : Verify Passcode\n ios--\n ios--\n End\n user--\n\n wallet -> se :\n se++\n se -> terminal : Provide device account number \\nand transaction-specific dynamic security code\n terminal++\n se--\n terminal -> issuer : Request payment approval \\nwith device account number\n issuer++\n issuer -> issuer++: Verify payment\n issuer--\n terminal <-- issuer : Return approval\n issuer--\n wallet <-- terminal : Return approval\n terminal--\n wallet--\n\n\n@enduml" | false | true | false | false | sequence |
a1b0511b617b2fac216e1bdf506c8f52ed6a64e7 | e96e871f1090024045f04097c317b00018fcb32f | /elasticsearch/mlr.puml | 88b569900af2ce2742f2c5f434855bc4ef8b9f41 | [] | no_license | gehel/notes | 389ca45941e8c98ef2380d4e6b5eeefa978ef9d5 | b9e4872410bc2ea31171e3416fad77ea744e4af2 | refs/heads/master | 2021-01-11T00:15:46.065202 | 2020-05-26T20:22:25 | 2020-05-26T20:22:25 | 70,569,532 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,725 | puml | @startuml
== click log generation ==
oozie -> oozie: schedule label generation
note left
arrow signify initiator
of communication, not
data flow
end note
activate oozie
database hdfs
oozie -> hdfs: retrieve click data
oozie -> hdfs: retrieve query data
oozie -> oozie: compute search click
oozie -> hdfs: store search click
deactivate oozie
== mjolnir data pipeline ==
actor operator
operator -> "mjolnir (spark)": start mjolnir
activate "mjolnir (spark)"
"mjolnir (spark)" -> hdfs: retrieve search click
"mjolnir (spark)" -> "mjolnir (spark)": grouping queries (1st pass, stemming)
"mjolnir (spark)" -> "inactive search\ncluster (codfw)": grouping queries (2nd pass, clustering)
note right
this is exploiting an opening of firewall
and should be replaced by async
communication via kafka at some point
end note
"mjolnir (spark)" -> "mjolnir (spark)": sampling
"mjolnir (spark)" -> "mjolnir (spark)": label generation\nwith DBN click model
== feature vector retrieval ==
database kafka
"mjolnir (spark)" -> kafka: send queries for feature vectors
relforge -> kafka: retrieve queries to be analyzed
relforge --> kafka: send feature vectors back
"mjolnir (spark)" -> kafka: retrieve feature vectors
"mjolnir (spark)" -> hdfs: store query x feature vectors matrix\n(training data)
== machine learning ==
"mjolnir (spark)" -> hdfs: retrieve query x feature vectors matrix
"mjolnir (spark)" -> "mjolnir (spark)": create decision trees with xgboost\n
"mjolnir (spark)" -> operator: store decision trees
deactivate "mjolnir (spark)"
== upload to production ==
operator -> "elasticsearch\ncirrus": upload decision trees to production
note right
upload to production
isn't automated yet
end note
@enduml
| false | true | false | false | usecase |
d426550db3353040ff44cfe7ae36f30f778cde57 | cf8eccdffbcf646956ae7070f26762f3a5a3900a | /documentacion/Diagrama de Secuencia/DS Orden de Cambio.plantuml | 81d1c69737e79a1b564bbef16501126d48d6beb0 | [] | no_license | LaNsDiego/LaravelGestion | 009fc8fd6b846ef81c277e17fbee66e9c0b9446d | 5a8ec3826b9f866fb21222389c87662a63b086bb | refs/heads/master | 2022-05-01T03:46:15.627838 | 2019-12-02T20:24:40 | 2019-12-02T20:24:40 | 215,569,987 | 0 | 0 | null | 2022-03-26T01:32:03 | 2019-10-16T14:34:05 | PHP | UTF-8 | PlantUML | false | false | 2,175 | plantuml | @startuml
hide footbox
actor JefeProyecto
boundary OrdenCambio.listar
boundary OrdenCambio.agregar
control OrdenCambioController
entity OrdenCambio
entity OrdenCambioDetalle
entity SolicitudCambio
entity CronogramaFase
entity CronogramaElementoConfiguracion
entity MiembroProyecto
JefeProyecto -> OrdenCambio.listar : Selecciona opcion nueva orden de cambio
OrdenCambio.listar -> OrdenCambioController : Redireccionar al controlador
OrdenCambioController -> OrdenCambioController : Frmagregar()
OrdenCambioController -> SolicitudCambio : listar solicitudes
SolicitudCambio -> SolicitudCambio : ListarAceptadas(int $ParticipanteId)
SolicitudCambio -> OrdenCambioController : ArrayList<SolicitudCambio> $ASolicitudCambio
OrdenCambioController -> CronogramaFase : listar cronograma fase
CronogramaFase -> CronogramaFase : ListarFasePorProyecto(int $ProyectoId)
CronogramaFase -> OrdenCambioController : ArrayList<CronogramaFase> $ACronogramaFase
OrdenCambioController -> CronogramaElementoConfiguracion : ListarECSPorFase(int $FaseCronogramaId)
CronogramaElementoConfiguracion -> OrdenCambioController : ArrayList<ListarECSPorFase> $AListarECSPorFase
OrdenCambioController -> MiembroProyecto : listar miembros
MiembroProyecto -> MiembroProyecto : ListarMiembrosPorProyectos(int $ProyectoId)
MiembroProyecto -> OrdenCambioController : ArrayList<MiembroProyecto> $AMiembroProyecto
OrdenCambioController -> OrdenCambio.agregar : View('OrdenCambio.agregar', $ASolicitudCambio)
OrdenCambio.agregar -> JefeProyecto : Muestra Formulario
JefeProyecto -> OrdenCambio.agregar : ingresa datos
OrdenCambio.agregar -> OrdenCambioController : enviar datos
OrdenCambioController -> OrdenCambioController : ActAgregar(Request $request)
OrdenCambioController -> OrdenCambio : Guardar Orden de cambio
OrdenCambio -> OrdenCambio : Agregar(OrdenCambio $obj)
OrdenCambio -> OrdenCambioController : int $id
OrdenCambioController -> OrdenCambioDetalle : guarde detalle
OrdenCambioDetalle -> OrdenCambioDetalle : Agregar(OrdenCambio $obj)
OrdenCambioDetalle -> OrdenCambioController : int $id
OrdenCambioController -> OrdenCambio.agregar : redirect('OrdenCambio.agregar');
@enduml | false | true | false | false | usecase |
3c51e9823cda0035402662b95d854b7ff4b84215 | 72c605a8372b04f19ec6ee6cefaf5517524d8f74 | /CruiseControlInterface/CCISimulatedEnv.emi/src-models/output-CCIEnvironment/output-CompositeStructureSM.plantuml | 7fbf412713d7b40bb63ad6ac6bc4ab7c67471db3 | [] | no_license | ValentinBesnard/emi-deployment | 73fba07d8f2cb6fabf82b4274bff564c3d17798e | d18eac496381bbf60ff6a2a0492083c8f0705a72 | refs/heads/master | 2022-04-15T22:09:51.331064 | 2020-02-24T07:03:54 | 2020-02-24T07:03:54 | 182,274,203 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,566 | plantuml |
@startuml
state Env {
state "buttons : Buttons" as CCIEnvironment_Env_buttons
state "clutchPedal : Pedal" as CCIEnvironment_Env_clutchPedal
state "breakPedal : Pedal" as CCIEnvironment_Env_breakPedal
state "throttlePedal : Pedal" as CCIEnvironment_Env_throttlePedal
state "engine : Engine" as CCIEnvironment_Env_engine
state "envButtonsPort : EnvButtonsPort" as CCIEnvironment_Env_envButtonsPort <<entrypoint>>
state "envClutchPedalPort : EnvPedalPort" as CCIEnvironment_Env_envClutchPedalPort <<entrypoint>>
state "envBreakPedalPort : EnvPedalPort" as CCIEnvironment_Env_envBreakPedalPort <<entrypoint>>
state "envThrottlePedalPort : EnvPedalPort" as CCIEnvironment_Env_envThrottlePedalPort <<entrypoint>>
state "envControlOnOffPort : EnvControlOnOffPort" as CCIEnvironment_Env_envControlOnOffPort <<entrypoint>>
state "envSpeedPort : EnvSpeedPort" as CCIEnvironment_Env_envSpeedPort <<entrypoint>>
state "envCruiseSpeedPort : EnvCruiseSpeedPort" as CCIEnvironment_Env_envCruiseSpeedPort <<entrypoint>>
CCIEnvironment_Env_envButtonsPort --> CCIEnvironment_Env_buttons
CCIEnvironment_Env_envClutchPedalPort --> CCIEnvironment_Env_clutchPedal
CCIEnvironment_Env_envBreakPedalPort --> CCIEnvironment_Env_breakPedal
CCIEnvironment_Env_envThrottlePedalPort --> CCIEnvironment_Env_throttlePedal
CCIEnvironment_Env_envControlOnOffPort --> CCIEnvironment_Env_engine
CCIEnvironment_Env_envSpeedPort --> CCIEnvironment_Env_engine
CCIEnvironment_Env_envCruiseSpeedPort --> CCIEnvironment_Env_engine
}
@enduml
| false | true | false | false | state |
4f34be462a93ed08012f177556046df45cdadf1a | 4c136553d9d11cee9ed3ff760758c616134bf1ae | /mei-isep-edom-20-21-team-106/part1/tool1-mps/project-isep-inv/languages/ecommerceRating/sandbox/source_gen/ecommerceRating/sandbox/model.puml | 1bd74fc9b5e6414538a513a1a1c299d43a3e2bca | [] | no_license | PeFerreira98/ISEP.Master.EDOM.Old | 15f23b15c21087ef4ed042cf27a39af177ecaf6b | 8cbeeeb8b1cda6b08a2fc70769c195244cd6ed4b | refs/heads/main | 2023-08-29T21:53:04.911073 | 2021-11-14T15:40:06 | 2021-11-14T15:40:06 | 427,965,742 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 506 | puml | #Model AliExpress
@startuml
class Buyer{
Id : string
}
class Prodcut{
Id : string
Description : string
}
class Rate{
Id : string
}
class Comment{
Id : string
}
class Review{
Id : string
}
class ApprovalProcess{
Id : string
}
class Step{
Id : string
Name : string
}
Prodcut "1" -- "*" Comment
Comment "*" -- "1" Buyer : "Author"
Rate "*" -- "1" Buyer : "Author"
Rate "1" -- "0..1" Review : "has"
ApprovalProcess "1" -- "1..*" Step
Step "*" -- "0..2" Step
ApprovalProcess "1" -- "1" Review
@enduml | false | true | false | false | class |
9f94d79ac82b3eed724133c54219beb04a1f1506 | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /serviceSchema/sdWan/uml/ipv6ConnectionAddressing.puml | 9857475a2e79bcae150d3d855e84b5d851a08c85 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 1,119 | puml | @startuml
skinparam {
FontName Times
ClassBackgroundColor White
ClassBorderColor Black
ClassBorderColor<<ServiceSpecification>> FireBrick
}
!define datatype(x) class x << (D,#FF7700) DataType>>
datatype(Ipv6ConnectionAddressing) {
ipv6AddressType: Ipv6AddressingType [1]
subscriberIpv6Address: Ipv6Address [1]
ipv6Subnet: Ipv6Subnet [0..*]
}
datatype(Ipv6Address) {
String/ipv6: format ipv6
}
enum Ipv6AddressingType {
- DHCP
- SLAAC
- STATIC
- LL_ONLY
}
datatype(Ipv6Prefix) {
ipv6Address: Ipv6Address
prefixLength: Integer
}
Ipv6Prefix *--> Ipv6Address: ipv6Address
datatype(Ipv6Subnet) {
ipv6Prefix: Ipv6Prefix
serviceProviderIpv6Address: Ipv6Address [1..*]
reservedPrefixes: Ipv6Prefix [0..*]
}
Ipv6Subnet *--> Ipv6Prefix: ipv6Prefix
Ipv6Subnet *--> "1..*" Ipv6Address: serviceProviderIpv6Addresses
Ipv6Subnet *--> "0..*" Ipv6Prefix: reservedPrefixes
Ipv6ConnectionAddressing *--> Ipv6AddressingType
Ipv6ConnectionAddressing *--> Ipv6Address: subscriberIpv6Address
Ipv6ConnectionAddressing *--> Ipv6Subnet: ipv6Subnet
@enduml | false | true | false | false | sequence |
2e77a8c547d277050342056eebcc9022ff0fe658 | 93771d157a51ac620babab57636a81b5b02121d3 | /Restaurants.plantuml | 16f8c11595bb56423737f0756ddd1f175063dd32 | [] | no_license | SBTurner/Restaurants-App-Exercise | 8e5832b048547c561bdc84611deb3a079791dec9 | 2cd3affc2117e0cb1e8ca565933eb18c05a6b33f | refs/heads/main | 2022-12-29T22:03:30.205973 | 2020-10-16T16:08:08 | 2020-10-16T16:08:08 | 303,634,531 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 399 | plantuml | @startuml name Restaurant UML Diagram
class Restaurant{
id: Integer
name: String
menus: Array<Menu>
---
addMenu(<Menu>)
removeMenu(<Menu>)
}
class Menu{
id: Integer
name: String
items: Array<Item>
---
addItem(<Item>)
removeItem(<Item>)
}
class Item{
id: Integer
name: String
price: Float
}
Restaurant --{ Menu
Menu --{ Item
@enduml | false | true | false | false | class |
690b9923b522f184823d155cae5f3a0a86da0a8f | 4c3d4fff76226c2ba9d4687ac8fc5e714c9e21fb | /docs/design_encoder.puml | ff7f88be8586450d15c82e4f9f09591aac9603b2 | [
"MIT"
] | permissive | meeetju/text_encoder | c1971665e818c506865358dd3c7954c9b1d1d4e4 | ba1c298f527e086976f4535d694992e3e7e05b65 | refs/heads/master | 2023-01-01T13:21:49.467338 | 2020-08-28T23:41:44 | 2020-08-28T23:41:44 | 240,598,478 | 2 | 0 | null | 2020-08-28T23:14:05 | 2020-02-14T21:05:39 | null | UTF-8 | PlantUML | false | false | 1,085 | puml | @startuml
hide empty methods
hide empty attributes
class Encoder {
+encode()
}
class NullCoder {
+encode()
}
abstract class Reader {
{abstract}read()
}
class StringReader {
+read()
}
class FileReader {
+read()
}
class ConsoleReader {
+read()
}
abstract class Writer {
{abstract}write()
}
class StringWriter {
+write()
+get()
}
class FileWriter {
+write()
+finish()
}
class ConsoleWriter {
+write()
}
abstract class Coder {
{abstract}encode_char()
}
class Cesar {
+encode_char()
}
class Xor {
+encode_char()
}
abstract class EncryptionKey {
{abstract}get()
}
class ScalarEncryptionKey {
+get()
}
class IterableEncryptionKey {
+get()
}
Encoder --> Reader
Encoder --> Writer
Encoder --> Coder
Coder -left-> EncryptionKey
NullCoder --> Reader
NullCoder --> Writer
Coder <|-- Cesar
Coder <|-- Xor
Reader <|-- StringReader
Reader <|-- FileReader
Reader <|-- ConsoleReader
Writer <|-- StringWriter
Writer <|-- FileWriter
Writer <|-- ConsoleWriter
EncryptionKey <|-- ScalarEncryptionKey
EncryptionKey <|-- IterableEncryptionKey
@enduml | false | true | false | false | class |
e2ba076d698b97b674eec1d4d0f3affb4100bb70 | 5bdbd6738fe541bd2e09ee38cdcf8e5396e969e4 | /hadoop/src/hsso/mutual-auth-hybrid-client-http-direct.puml | 4232fc49055222ca15bc84b0f42967c66702eb2b | [] | no_license | kminder/puml | a788960884f2cabea5ff3daf05818716c0c28489 | bc65fc266143105da327d94e1fc6a91677093412 | refs/heads/master | 2021-01-20T06:25:50.168990 | 2013-06-18T17:20:54 | 2013-06-18T17:20:54 | 10,411,289 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,852 | puml | @startuml
title Client Mutual Authentication with HSSO (REST Client, No Gateway)
autonumber
hide footbox
participant "Client\n(c)" as C
participant "IdP" as IDP
box "Hadoop Cluster/Firewall"
participant "HSSO\n(sr)" as SR
participant "NameNode\n(nn)" as NN
participant "DataNode\n(dn)" as DN
end box
== Install ==
C->C: [ON(c-h)/AS(c-u)/CLI]\n<b>storeTrustedPublicKey</b>( sr-pub-key )
note right: Client acquired sr-pub-key out of band.\nAdded to truststore manually.\nUsed to validate SSL server auth.
== Login ==
C->SR: [HTTP:SSL(sr-id)]\n<b>discoverIdp</b>()\n: idp-type, idp-url, sr-feder-url
note right: Client discovers IdPs supported by cluster\nwith location to login and federate identity.
C->IDP: [IdP]\n<b>login</b>( credentials )\n: sso-token
note right: Login via IdP specific protocol.\nReturned sso-token used for federation.
C->SR: [HTTP:SSL(sr-id)]\n<b>federateIdentity</b>( sso-token )\n: c-sr-at, c-sr-ak, sr-token-url
note right: Client authenticates to HSSO.\nProvides crypto trusted SSO Token.\nReturned its Access Token for SR,\nAuthentication Key needed to use\nrefresh Access Tokens. c-sr-at=CAT
C->SR: [HTTP:SSL(sr-id)/AH(c-sr-at)]\n<b>acquireAccessToken</b>( svc-type=nn )\n: c-nn-at, nn-svc-url
note right: Client acquires Access Token for NN.\nAuthenticates HSSO with SSL server auth.\nAuthenticates itself to HSSO with client\nAccess Token in Authorization header. c-nn-at=SAT
== Access ==
C->NN: [HTTP:SSL(nn-id)/AH(c-nn-at)]\n<b>listFiles</b>( file )\n: block-url, block-id, block-token
note right: Client accesses NN to read file.\nAuthenticates NN with SSL server auth.\nAuthenticates itself to NN with client\nAccess Token in Authorization header.
C->DN: [HTTP:SSL(dn-id)]\n<b>readBlock</b>( block-id, block-token )\n: block-data
note right: Only Block Token for\nclient auth.
@enduml | false | true | false | false | sequence |
f7165ce9dd32de9f4f48ef14c8d9df894800a2ed | 77d6bba90c73d3bec251336cb93f09e71017cfe6 | /service.puml | a362b1beeca40ca558779a952a3460fce2e28111 | [] | no_license | Service360-SampleOrg/OrderService | b96b47934045316137f3387c9e218229e22bd035 | a4fea9b8f3b8cf002c5b70ac6b0fa4a808adcb43 | refs/heads/master | 2022-02-27T23:02:43.838484 | 2019-11-07T11:16:28 | 2019-11-07T11:16:28 | 219,785,986 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 113 | puml | ' OrderService
@startuml
node OrderService {
}
node CatalogService {
}
OrderService --> CatalogService
@enduml | false | true | false | false | deployment |
6873bfd9a1ae9a98619047c6cf0947c44d43e58a | 9d50206f898b7169aece763d7c097b74e1641e5f | /src/docs/ui-classes.puml | 068e9f1ca7f96304b48ed8e9d7192b4f6f6105cb | [] | no_license | open-jumpco/kfsm-hateoas-client | ba865282b11b495dcc1ba1068b1bf6002114e2d3 | ae198f0008113590335767fff98e88ea5c774a8d | refs/heads/trunk | 2023-09-01T08:32:39.854148 | 2023-02-02T11:03:44 | 2023-02-02T11:03:44 | 245,517,316 | 3 | 0 | null | 2023-01-30T12:47:15 | 2020-03-06T21:11:10 | TypeScript | UTF-8 | PlantUML | false | false | 1,156 | puml | @startuml
interface Links {
}
interface Paged {
}
Paged -left-|> Links
interface PageRequest {
sort: string;
size: number;
page: number;
}
interface Observable<T>
enum TurnstileState {
LOCKED
UNLOCKED
}
interface TurnstileResource {
id: number
locked: boolean
message: string
}
TurnstileResource -left- TurnstileState: currentState
interface TurnstileResourcePage
TurnstileResource --|> Links
TurnstileResourcePage -down-|> Paged
TurnstileResourcePage -left- TurnstileResource: turnstiles
class ApiService {
}
class TurnstileApiService {
list(): Observable<TurnstileResourcePage>
create(): Observable<TurnstileResource>
get(turnstile: TurnstileResource): Observable<TurnstileResource>
sendEvent(turnstile: TurnstileResource, event: string): Observable<TurnstileResource>
delete(turnstile: TurnstileResource): Observable<void>
}
ApiService <|-left- TurnstileApiService
TurnstileApiService .left. Observable: <<return>>
TurnstileApiService .. TurnstileResource: <<parameter,return>>
TurnstileApiService .. TurnstileResourcePage: <<return>>
ApiService .right. PageRequest: <<parameter>>
@enduml
| false | true | false | false | class |
7e12849239657af1b8f0e07025ad83c571d6d974 | ccc4a578b9cf4323653f87212acca9b3d12f1c23 | /WasteWatcherApp/WasteWatcherApp/UML/App.xaml.puml | 099aa7f61303f6ed6f5af7f10f1ada4494c63931 | [] | no_license | MarioGeier00/WasterWatcherApp | 383531013b68fb52927ef4abf529e83bd6beff4b | 88190459884fa0252ebfe63fdf3e1ce852eeb75f | refs/heads/dev | 2023-06-04T09:37:22.112757 | 2021-07-01T11:57:02 | 2021-07-01T11:57:02 | 355,274,133 | 0 | 0 | null | 2021-05-19T12:48:26 | 2021-04-06T17:24:11 | C# | UTF-8 | PlantUML | false | false | 77 | puml | @startuml
class App <<partial>> {
+ App()
}
Application <|-- App
@enduml
| false | true | false | false | class |
92b4818c652d061d0415b7f53e53fe1a35888d2b | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Modules/Mouse/MouseModuleConfiguration.puml | 7f811cc1cba9989f3a274d26f48db7bd0a9afea8 | [
"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 | 345 | puml | @startuml
skinparam monochrome true
skinparam ClassAttributeIconSize 0
!startsub default
class MouseModuleConfiguration {
+ SamplingRateInHz : uint <<get>> <<set>>
+ Threshold : int <<get>> <<set>>
+ Parse(configuration:RawConfiguration) : void
}
interface IConfiguration
!endsub
IConfiguration <|-- MouseModuleConfiguration
@enduml
| false | true | false | false | class |
b5ffd44caffa61ea0b6c8e3f270995b5449ee6d7 | 298681340d21b3814e42c18d08181aa2df4980dc | /scheme.puml | 1046963c13cb23f2512bb82bf3aa8b5c057293c0 | [] | no_license | Mikkgn/SnortRuleGenerator | 8433e8aae002d634d2bfdca2acaed2c6d658b5b9 | 2b1da3da8e26fcf705067f9da48a06e9c1e25778 | refs/heads/master | 2020-06-04T23:14:37.004216 | 2020-01-27T12:42:16 | 2020-01-27T12:42:16 | 192,228,192 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 754 | puml | @startuml
PostgreSQL -[hidden]-> backend
package frontend {
[GUI]
}
package backend {
[Analyzer]
database "PostgreSQL" {
}
[RuleGenerator] -[hidden]left->Analyzer
package RabbitMQ{
WebSocket -[hidden]-> WebSocket
WebSocket <-[hidden]up-> AMQP
}
[API] <-right-> HTTP
RabbitMQ -[hidden]up-> Analyzer
API -[hidden]-> RabbitMQ
}
backend -[hidden]up->PostgreSQL
RabbitMQ-[hidden]up->Analyzer
[API] -> AMQP
AMQP <-> Analyzer
Analyzer -> PostgreSQL
Analyzer -> WebSocket
GUI <- WebSocket
HTTP <-up-> GUI
API -[hidden]down->RuleGenerator
API <-up- PostgreSQL
RuleGenerator -[hidden]right-> API
API -[hidden]left-> RuleGenerator
RuleGenerator -up-> PostgreSQL
RuleGenerator <- AMQP
@enduml | false | true | false | false | sequence |
7faf766f2b8c91d9a2084ab5312a675b332bb9da | a67cb1fb7c70f7576601ebfb21aa9ba776d4e010 | /src/main/java/DesignModel/FactoryModelDemo/SimpleFactoryDemo/PizzaClass.puml | b94dd2d66b2ac868ba040b8e09cb2544fe37bac8 | [] | no_license | wbin327/DesignPatterns | 655c701394ac25393d1a707d8eba7d3b2b38bc35 | 56fbd048eed2b3b01f9061e7c33d413ab6be750a | refs/heads/master | 2020-07-19T23:54:18.487948 | 2019-09-09T10:37:55 | 2019-09-09T10:37:55 | 206,534,562 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 501 | puml | @startuml
abstract class Pizza{
String name;
public void prepare();
public void bake();
public void cut();
public void packUp();
}
class BananaPizza extends Pizza{
}
class CheesePizza extends Pizza{
}
class PizzaStore{
PizzaFactory pizzaFactory;
public void submitOrder();
public string getType();
}
class PizzaFactory{
public Pizza createPizza();
}
PizzaStore o-- PizzaFactory
PizzaFactory .. Pizza
PizzaFactory .. CheesePizza
PizzaFactory .. BananaPizza
@enduml | false | true | false | false | class |
657a2bfccbc28802d1e54a32bec8c04a60f0188d | 91678f027f1da807dfe4c113028f331f458c3a3d | /src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-content-product.puml | 62507821a9b58a87293578d833453a15859b91ed | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | amtee/platform | fd4b863a98c4302a26782486d173c437dfa98baa | 3518811b02bcfb746abb8553ae8e5ac6f15338c0 | refs/heads/trunk | 2023-08-20T03:41:00.473175 | 2021-09-27T11:20:36 | 2021-09-27T11:20:36 | 410,864,620 | 1 | 0 | MIT | 2022-02-06T18:56:01 | 2021-09-27T11:54:21 | null | UTF-8 | PlantUML | false | false | 21,691 | puml | @startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >>
!define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
hide empty members
skinparam backgroundColor #FFFFFF
' entities
Table(ShopwareCoreContentProductProductDefinition, "product\n(Product)") {
primary_key(id) id
primary_key(versionId) version
parentId parentFk
not_null(parentVersionId) referenceVersion
manufacturerId foreignKey
not_null(productManufacturerVersionId) referenceVersion
unitId foreignKey
not_null(taxId) foreignKey
coverId foreignKey
productMediaVersionId referenceVersion
deliveryTimeId foreignKey
featureSetId foreignKey
not_null(price) price
not_null(productNumber) numberRange
not_null(stock) int
restockTime int
autoIncrement int
active bool
availableStock int
available bool
isCloseout bool
variation list
displayGroup string
configuratorGroupConfig json
mainVariantId foreignKey
variantRestrictions json
manufacturerNumber string
ean string
purchaseSteps int
maxPurchase int
minPurchase int
purchaseUnit float
referenceUnit float
shippingFree bool
purchasePrices price
markAsTopseller bool
weight float
width float
height float
length float
releaseDate dateTime
ratingAverage float
categoryTree list
propertyIds manyToManyId
optionIds manyToManyId
tagIds manyToManyId
childCount childCount
customFieldSetSelectionActive bool
sales int
cheapestPrice cheapestPrice
metaDescription translated
name translated
keywords translated
description translated
metaTitle translated
packUnit translated
packUnitPlural translated
customFields translated
customSearchKeywords translated
canonicalProductId foreignKey
cmsPageId foreignKey
not_null(cmsPageVersionId) referenceVersion
slotConfig translated
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
Table(ShopwareCoreContentProductAggregateProductStreamMappingProductStreamMappingDefinition, "product_stream_mapping\n(M:N Mapping)") {
primary_key(productId) foreignKey
not_null(productVersionId) referenceVersion
primary_key(productStreamId) foreignKey
}
Table(ShopwareCoreContentProductAggregateProductCategoryProductCategoryDefinition, "product_category\n(M:N Mapping)") {
primary_key(productId) foreignKey
primary_key(productVersionId) referenceVersion
primary_key(categoryId) foreignKey
primary_key(categoryVersionId) referenceVersion
}
Table(ShopwareCoreContentProductAggregateProductCustomFieldSetProductCustomFieldSetDefinition, "product_custom_field_set\n(M:N Mapping)") {
primary_key(productId) foreignKey
primary_key(customFieldSetId) foreignKey
primary_key(productVersionId) referenceVersion
}
Table(ShopwareCoreContentProductAggregateProductTagProductTagDefinition, "product_tag\n(M:N Mapping)") {
primary_key(productId) foreignKey
primary_key(productVersionId) referenceVersion
primary_key(tagId) foreignKey
}
Table(ShopwareCoreContentProductAggregateProductConfiguratorSettingProductConfiguratorSettingDefinition, "product_configurator_setting\n(The root product configurator.)") {
primary_key(id) id
primary_key(versionId) version
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
mediaId foreignKey
not_null(optionId) foreignKey
price json
position int
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentProductAggregateProductPriceProductPriceDefinition, "product_price\n(Staggered pricing)") {
primary_key(id) id
primary_key(versionId) version
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
not_null(ruleId) foreignKey
not_null(price) price
not_null(quantityStart) int
quantityEnd int
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentProductAggregateProductPropertyProductPropertyDefinition, "product_property\n(M:N Mapping)") {
primary_key(productId) foreignKey
not_null(productVersionId) referenceVersion
primary_key(optionId) foreignKey
}
Table(ShopwareCoreContentProductAggregateProductSearchKeywordProductSearchKeywordDefinition, "product_search_keyword\n(Search keywords)") {
primary_key(id) id
primary_key(versionId) version
not_null(languageId) foreignKey
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
not_null(keyword) string
not_null(ranking) float
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentProductAggregateProductKeywordDictionaryProductKeywordDictionaryDefinition, "product_keyword_dictionary\n(Search dictionary)") {
primary_key(id) id
not_null(languageId) foreignKey
not_null(keyword) string
reversed string
}
Table(ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition, "product_review\n(Product reviews)") {
primary_key(id) id
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
customerId foreignKey
not_null(salesChannelId) foreignKey
not_null(languageId) foreignKey
externalUser string
externalEmail string
not_null(title) string
not_null(content) longText
points float
status bool
comment longText
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentProductAggregateProductManufacturerProductManufacturerDefinition, "product_manufacturer\n(Manufacturer)") {
primary_key(id) id
primary_key(versionId) version
mediaId foreignKey
link string
name translated
description translated
customFields translated
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
TranslationTable(ShopwareCoreContentProductAggregateProductManufacturerTranslationProductManufacturerTranslationDefinition, "product_manufacturer_translation\n((Translations))") {
not_null(name) string
description longText
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(productManufacturerId) foreignKey
primary_key(languageId) foreignKey
primary_key(productManufacturerVersionId) referenceVersion
}
Table(ShopwareCoreContentProductAggregateProductMediaProductMediaDefinition, "product_media\n(Product media/images)") {
primary_key(id) id
primary_key(versionId) version
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
not_null(mediaId) foreignKey
position int
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
TranslationTable(ShopwareCoreContentProductAggregateProductTranslationProductTranslationDefinition, "product_translation\n((Translations))") {
metaDescription string
not_null(name) string
keywords longText
description longText
metaTitle string
packUnit string
packUnitPlural string
customSearchKeywords list
slotConfig json
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(productId) foreignKey
primary_key(languageId) foreignKey
primary_key(productVersionId) referenceVersion
}
Table(ShopwareCoreContentProductAggregateProductOptionProductOptionDefinition, "product_option\n(M:N Mapping)") {
primary_key(productId) foreignKey
not_null(productVersionId) referenceVersion
primary_key(optionId) foreignKey
}
Table(ShopwareCoreContentProductAggregateProductCategoryTreeProductCategoryTreeDefinition, "product_category_tree\n(M:N Mapping)") {
primary_key(productId) foreignKey
primary_key(productVersionId) referenceVersion
primary_key(categoryId) foreignKey
primary_key(categoryVersionId) referenceVersion
}
Table(ShopwareCoreContentProductAggregateProductCrossSellingProductCrossSellingDefinition, "product_cross_selling\n(Cross selling products)") {
primary_key(id) id
not_null(name) translated
not_null(position) int
sortBy string
sortDirection string
not_null(type) string
active bool
limit int
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
productStreamId foreignKey
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
TranslationTable(ShopwareCoreContentProductAggregateProductCrossSellingTranslationProductCrossSellingTranslationDefinition, "product_cross_selling_translation\n((Translations))") {
not_null(name) string
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(productCrossSellingId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentProductAggregateProductCrossSellingAssignedProductsProductCrossSellingAssignedProductsDefinition, "product_cross_selling_assigned_products\n(Assigned Cross selling products)") {
primary_key(id) id
not_null(crossSellingId) foreignKey
not_null(productId) foreignKey
primary_key(productVersionId) referenceVersion
position int
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentProductAggregateProductFeatureSetProductFeatureSetDefinition, "product_feature_set\n(Product feature sets)") {
primary_key(id) id
name translated
description translated
features json
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
TranslationTable(ShopwareCoreContentProductAggregateProductFeatureSetTranslationProductFeatureSetTranslationDefinition, "product_feature_set_translation\n((Translations))") {
not_null(name) string
description string
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(productFeatureSetId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentProductSalesChannelSortingProductSortingDefinition, "product_sorting\n(Product sorting)") {
primary_key(id) id
locked writeLockIndicator
not_null(key) string
not_null(priority) int
not_null(active) bool
not_null(fields) json
label translated
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
TranslationTable(ShopwareCoreContentProductSalesChannelSortingProductSortingTranslationDefinition, "product_sorting_translation\n((Translations))") {
not_null(label) string
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(productSortingId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentProductAggregateProductSearchConfigProductSearchConfigDefinition, "product_search_config\n(__EMPTY__)") {
primary_key(id) id
not_null(languageId) foreignKey
not_null(andLogic) bool
not_null(minSearchLength) int
excludedTerms list
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentProductAggregateProductSearchConfigFieldProductSearchConfigFieldDefinition, "product_search_config_field\n(__EMPTY__)") {
primary_key(id) id
not_null(searchConfigId) foreignKey
customFieldId foreignKey
not_null(field) string
not_null(tokenize) bool
not_null(searchable) bool
not_null(ranking) int
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreContentProductAggregateProductVisibilityProductVisibilityDefinition, "product_visibility\n(Visibility in sales channels)") {
primary_key(id) id
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
not_null(salesChannelId) foreignKey
not_null(visibility) int
not_null(createdAt) createdAt
updatedAt updatedAt
}
ForeignTable(ShopwareCoreSystemDeliveryTimeDeliveryTimeDefinition, "delivery_time") {
}
ForeignTable(ShopwareCoreSystemTaxTaxDefinition, "tax") {
}
ForeignTable(ShopwareCoreSystemUnitUnitDefinition, "unit") {
}
ForeignTable(ShopwareCoreContentSeoMainCategoryMainCategoryDefinition, "main_category") {
}
ForeignTable(ShopwareCoreContentSeoSeoUrlSeoUrlDefinition, "seo_url") {
}
ForeignTable(ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition, "order_line_item") {
}
ForeignTable(ShopwareCoreCheckoutCustomerAggregateCustomerWishlistProductCustomerWishlistProductDefinition, "customer_wishlist_product") {
}
ForeignTable(ShopwareCoreContentCmsCmsPageDefinition, "cms_page") {
}
ForeignTable(ShopwareCoreContentProductStreamProductStreamDefinition, "product_stream") {
}
ForeignTable(ShopwareCoreContentCategoryCategoryDefinition, "category") {
}
ForeignTable(ShopwareCoreSystemCustomFieldAggregateCustomFieldSetCustomFieldSetDefinition, "custom_field_set") {
}
ForeignTable(ShopwareCoreSystemTagTagDefinition, "tag") {
}
ForeignTable(ShopwareCoreContentMediaMediaDefinition, "media") {
}
ForeignTable(ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition, "property_group_option") {
}
ForeignTable(ShopwareCoreContentRuleRuleDefinition, "rule") {
}
ForeignTable(ShopwareCoreSystemLanguageLanguageDefinition, "language") {
}
ForeignTable(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer") {
}
ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") {
}
ForeignTable(ShopwareCoreSystemCustomFieldCustomFieldDefinition, "custom_field") {
}
' relationshipd
ShopwareCoreContentProductProductDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreSystemDeliveryTimeDeliveryTimeDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreSystemTaxTaxDefinition
ShopwareCoreContentProductAggregateProductManufacturerProductManufacturerDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreSystemUnitUnitDefinition
ShopwareCoreContentProductAggregateProductMediaProductMediaDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductFeatureSetProductFeatureSetDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductPriceProductPriceDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductCrossSellingProductCrossSellingDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductCrossSellingAssignedProductsProductCrossSellingAssignedProductsDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductConfiguratorSettingProductConfiguratorSettingDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductVisibilityProductVisibilityDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductSearchKeywordProductSearchKeywordDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreContentSeoMainCategoryMainCategoryDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreContentSeoSeoUrlSeoUrlDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition
ShopwareCoreContentProductAggregateProductOptionProductOptionDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductPropertyProductPropertyDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductCategoryProductCategoryDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductStreamMappingProductStreamMappingDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductCategoryTreeProductCategoryTreeDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductTagProductTagDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductTranslationProductTranslationDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductCustomFieldSetProductCustomFieldSetDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreCheckoutCustomerAggregateCustomerWishlistProductCustomerWishlistProductDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreContentCmsCmsPageDefinition
ShopwareCoreContentProductAggregateProductStreamMappingProductStreamMappingDefinition --> ShopwareCoreContentProductStreamProductStreamDefinition
ShopwareCoreContentProductAggregateProductCategoryProductCategoryDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentProductAggregateProductCustomFieldSetProductCustomFieldSetDefinition --> ShopwareCoreSystemCustomFieldAggregateCustomFieldSetCustomFieldSetDefinition
ShopwareCoreContentProductAggregateProductTagProductTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreContentProductAggregateProductConfiguratorSettingProductConfiguratorSettingDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentProductAggregateProductConfiguratorSettingProductConfiguratorSettingDefinition --> ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition
ShopwareCoreContentProductAggregateProductPriceProductPriceDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreContentProductAggregateProductPropertyProductPropertyDefinition --> ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition
ShopwareCoreContentProductAggregateProductSearchKeywordProductSearchKeywordDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductKeywordDictionaryProductKeywordDictionaryDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductManufacturerProductManufacturerDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentProductAggregateProductManufacturerTranslationProductManufacturerTranslationDefinition --> ShopwareCoreContentProductAggregateProductManufacturerProductManufacturerDefinition
ShopwareCoreContentProductAggregateProductManufacturerTranslationProductManufacturerTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductMediaProductMediaDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentProductAggregateProductTranslationProductTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductOptionProductOptionDefinition --> ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition
ShopwareCoreContentProductAggregateProductCategoryTreeProductCategoryTreeDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentProductAggregateProductCrossSellingProductCrossSellingDefinition --> ShopwareCoreContentProductStreamProductStreamDefinition
ShopwareCoreContentProductAggregateProductCrossSellingAssignedProductsProductCrossSellingAssignedProductsDefinition --> ShopwareCoreContentProductAggregateProductCrossSellingProductCrossSellingDefinition
ShopwareCoreContentProductAggregateProductCrossSellingTranslationProductCrossSellingTranslationDefinition --> ShopwareCoreContentProductAggregateProductCrossSellingProductCrossSellingDefinition
ShopwareCoreContentProductAggregateProductCrossSellingTranslationProductCrossSellingTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductFeatureSetTranslationProductFeatureSetTranslationDefinition --> ShopwareCoreContentProductAggregateProductFeatureSetProductFeatureSetDefinition
ShopwareCoreContentProductAggregateProductFeatureSetTranslationProductFeatureSetTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductSalesChannelSortingProductSortingTranslationDefinition --> ShopwareCoreContentProductSalesChannelSortingProductSortingDefinition
ShopwareCoreContentProductSalesChannelSortingProductSortingTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductSearchConfigProductSearchConfigDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductSearchConfigFieldProductSearchConfigFieldDefinition --> ShopwareCoreContentProductAggregateProductSearchConfigProductSearchConfigDefinition
ShopwareCoreContentProductAggregateProductSearchConfigFieldProductSearchConfigFieldDefinition --> ShopwareCoreSystemCustomFieldCustomFieldDefinition
ShopwareCoreContentProductAggregateProductVisibilityProductVisibilityDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
@enduml
| false | true | false | false | uml-unknown |
6adacc640cc16097bb2750bda44a31b461c057d4 | d866af2c7b3d52f1eaec3844d981536bf668e72a | /docs/LAMP_architecture.puml | c31821bce1348a52dc938bd99bebb61d3be6d3ec | [
"MIT"
] | permissive | fchris82/launchpad | 35776520ed95a0cee56861a478e73f46f56f9289 | 780e4ec789db3ec1858c0f19f6505181912cfeb7 | refs/heads/master | 2021-06-23T04:57:16.311320 | 2017-06-24T00:45:11 | 2017-06-24T00:45:11 | 100,381,799 | 0 | 0 | null | 2017-08-15T13:46:19 | 2017-08-15T13:46:19 | null | UTF-8 | PlantUML | false | false | 1,175 | puml | @startuml
title "Development Mode - LAMP"
cloud "Exposed Ports" {
() XX080 as SymfonyDevModePort
() XX081 as SymfonyProdModePort
() XX082 as SymfonyProdModeVarnishPort
() XX083 as MemcacheAdminPort
() XX983 as SorlPort
() XX084 as DatabaseAdminPort
() XX306 as DatabaseEnginePort
() XX180 as MailcatcherPort
}
node "Apache 2.4.x / PHP" as engine {
[PROD]
[DEV]
[PHP-CLI]
}
node "MySQL or MariaDB" as db {
database "ezplatform" as StandardDB
}
node "Memcache/Redis" as appcache {
}
node "Varnish 4.x" as varnish {
}
node "Memcache/Redis Admin" as memcacheadmin {
}
node "Mailcatcher" as mailcatcher {
}
node "Adminer" as dbadmin {
}
node "Solr" as solr {
}
MemcacheAdminPort -> memcacheadmin: Web Interface
DatabaseEnginePort ---> db: TCP forward
MailcatcherPort -> mailcatcher: Web Interface
DatabaseAdminPort -> dbadmin: Web Interface
SorlPort -> solr
SymfonyDevModePort --> DEV: Web
SymfonyProdModePort --> PROD: Web
SymfonyProdModeVarnishPort --> varnish: Web
varnish --> PROD
engine --> db
engine --> appcache
engine --> mailcatcher
engine ---> solr
memcacheadmin --> appcache
dbadmin --> db
@enduml
| false | true | false | false | sequence |
66e223d3e50c0b57bd879ad8d2e379d38889974d | f88c11f8073b5b8d9da916dc856a9f4d0ff2b7f9 | /src/game/backend/cell/cell.plantuml | 29fd2609dc8d050db61690bfef470cc8e94f1f31 | [] | no_license | matiapa/itba-poo-final | ec1ac8011fbb0936d3147042eb22d805043aefbd | 58f050e0c3c8566d674d3ab03772da2a5f6b91d4 | refs/heads/master | 2022-04-04T08:08:15.668422 | 2020-02-12T02:44:10 | 2020-02-12T02:44:10 | 238,546,867 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 992 | plantuml | @startuml
' --------------- CELL --------------- '
' Cell '
class Cell{
- around: Cell[]
- content: Element
+ isMovable(): bool
+ isEmpty(): bool
+ hasFloor(): bool
+ setContent(Element): void
+ clearContent(): void
+ getContent(): Element
+ getAndClearContent(): Element
+ fallUpperContent(): bool
- explode(Direction): void
- expandExplosion(Direction[]): void
}
Cell *-- Element
' GeneratorCell '
abstract class GeneratorCell {
+ equals(): bool
+ isEmpty(): bool
+ isMovable(): bool
+ {abstract} getContent(): Element
+ getAndClearContent(): Element
+ setContent(): void
+ fallUpperContent(): bool
}
Cell <-- GeneratorCell
' CandyGeneratorCell '
class CandyGeneratorCell {
+ getContent(): Element
}
GeneratorCell <-- CandyGeneratorCell
' BombCandyGeneratorCell '
class BombCandyGeneratorCell {
+ bombFrequency: double
+ bombInitialMoves: int
+ bombsToPlace: int
+ getContent(): Element
}
GeneratorCell <-- BombCandyGeneratorCell
@enduml
| false | true | false | false | class |
1e7f3bd2276106d85681b9e4ab1bcd588f2672c9 | 555d982a6ffa796e7b3ad1dac1ea647d104e9e3d | /20160915-Multisensor-LOD/img/stat-distance.puml | e685c38689aa983a2720c42d5e7c3eb5c9386fcb | [] | no_license | VladimirAlexiev/multisensor | 218e99e8a1701be714dc0945e1aa3e7bcbbdb04d | e6359e80fdd1644b6f7093487f74af1df96bcccd | refs/heads/master | 2021-07-16T05:36:54.662918 | 2016-11-02T11:33:29 | 2016-11-02T11:33:29 | 67,613,414 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,455 | puml | @startuml
hide empty methods
hide empty attributes
hide circle
skinparam classAttributeIconSize 0
class ms_distance_dat_ES_BE as "ms-distance-dat:ES-BE"
ms_distance_dat_ES_BE : a qb:Observation
class ms_distance_ES_BE_1580489 as "ms-distance:ES-BE-1580489"
ms_distance_dat_ES_BE --> ms_distance_ES_BE_1580489 : ms:distance
class ms_distance_google_distance as "ms-distance:google-distance"
ms_distance_dat_ES_BE -up-> ms_distance_google_distance : qb:dataSet
class eugeo_ES as "eugeo:ES"
ms_distance_dat_ES_BE --> eugeo_ES : prop:geo
class eugeo_BE as "eugeo:BE"
ms_distance_dat_ES_BE --> eugeo_BE : prop:partner
class ms_distance_ES_AT_2401185 as "ms-distance:ES-AT-2401185"
ms_distance_ES_AT_2401185 : ms:distance 2401185
ms_distance_ES_AT_2401185 : ms:duration 79722
ms_distance_ES_AT_2401185 : ms:durationLabel "22 hours 9 mins"
ms_distance_ES_AT_2401185 : rdfs:Label "2,401 km"
class ms_distance_dat_ES_AT as "ms-distance-dat:ES-AT"
ms_distance_dat_ES_AT : a qb:Observation
ms_distance_dat_ES_AT --> eugeo_ES : prop:geo
class eugeo_AT as "eugeo:AT"
ms_distance_dat_ES_AT --> eugeo_AT : prop:partner
ms_distance_dat_ES_AT -up-> ms_distance_google_distance : qb:dataSet
ms_distance_dat_ES_AT --> ms_distance_ES_AT_2401185 : ms:distance
ms_distance_ES_BE_1580489 : ms:distance 1580489
ms_distance_ES_BE_1580489 : ms:duration 52262
ms_distance_ES_BE_1580489 : ms:durationLabel "14 hours 31 mins"
ms_distance_ES_BE_1580489 : rdfs:Label "1,580 km"
@enduml
| false | true | false | false | sequence |
902afc28eeca3e578ead7d6a1a60c7989abad141 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/ipc01_01/start_sharing/i130385/ipc01_01_analysis.puml | 69e7a1d53c880ca18c2611ac8b745aad9ba265af | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 841 | puml | @startuml doc-files/ipc01_01_analysis.png
actor User
participant "<<analysis>>\nStartSharingUI" as UI
participant "<<analysis>>\nStartSharingCtrl" as ctrl
participant "<<analysis>>\nSpreadsheet" as sheet
participant "<<analysis>>\nCell" as cell
participant "<<analysis>>\nConnect" as connect
User -> UI : selectCells()
activate UI
UI -> ctrl : getCells()
activate ctrl
deactivate UI
ctrl -> sheet : getCell()
activate sheet
deactivate ctrl
sheet -> cell : getValue()
activate cell
sheet -> cell : getAddres()
deactivate cell
deactivate sheet
User -> UI : getClients()
activate UI
UI -> ctrl : getClients()
activate ctrl
ctrl -> connect : getClients()
activate connect
User -> UI : selectClient()
UI -> ctrl : connectTo()
ctrl -> connect : connectTo()
User -> UI : send()
UI -> ctrl : sendInfo()
ctrl -> connect : sendInfo()
@enduml
| false | true | false | false | sequence |
ab4da38446bf3994dba3fa22bb492fb230150219 | e4dea7a93901b04e2f3c4a20edf468ab625c193d | /Documents/Digitizer/Digitizer.puml | cc2db0aa454cb1d519e8b15d5da8804fc1a0f334 | [
"MIT"
] | permissive | mapbender/search | 50c93576b4ad49150085ed8b704d53da7576031d | dd0db2c22cd1138ce6ae67ef6e7c1d89f2f12114 | refs/heads/master | 2023-07-06T02:21:56.929313 | 2022-03-30T13:16:33 | 2022-03-30T13:16:33 | 63,959,169 | 3 | 3 | MIT | 2021-01-19T09:48:49 | 2016-07-22T14:22:36 | JavaScript | UTF-8 | PlantUML | false | false | 344 | puml | @startuml
package Mapbender <<Frame>> {
package DigitizerBundle <<Frame>> {
package Entity <<Frame>> {
class Configuration <extend Entity> {
+ hasFeatures
}
}
package Component <<Frame>> {
}
package Element <<Frame>> {
class DigitizerElement <extend HTMLElement> {
}
}
}
}
@enduml | false | true | false | false | class |
5520eefe34e19a2157d4128763bb0a34b913dec0 | 0db2a1b3f42bc02382a3ef4dcc292a327aa574e0 | /documents/version_5/diagrammes/classe/diagClasse.puml | 4a29d8de1ed7cd6a5979700e8a76822476862012 | [] | no_license | arnoux23u-IUTNC/2021_COO_Zeldiablo | 9d872fbaf107b05f02c5d1a5bc4f4bc3c314b94e | 2b44e0479eacb3114f897d82bc57372a89ae68af | refs/heads/main | 2023-09-02T13:52:01.393111 | 2021-11-15T21:47:07 | 2021-11-15T21:47:07 | 368,554,956 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,390 | puml | @startuml
title Diagramme de Classe - Zeldiablo V5
class JeuPerso implements Jeu{
+ {static} assetsDirectory : String
+ JeuPerso()
+ evoluer(d : Direction, b : boolean)
+ evoluerMonstres()
+ etreFini() : boolean
+ dessiner(crayon : Graphics2D)
}
interface Jeu{
+ evoluer(d : Direction, b : boolean)
+ evoluerMonstres()
+ etreFini() : boolean
}
class Labyrinthe{
+ {static} TAILLE : int
- {static} LAB : String
+ Labyrinthe(autoGenerate : boolean)
- peutBouger(p : Personnage, d : Direction) : boolean
+ deplacerPersonnage(p : Personnage, d : Direction) : boolean
- trouverDestination(p : Personnage, d : Direction) : Case
- estCaseVide(c : Case) : boolean
+ getEntree() : Porte
+ getSortie() : Porte
+ getCase( x : int, y : int) : Case
+ getCases() : Case[][]
+getlMonstre() : ArrayList<Monstre>
+dessiner(crayon : Graphics2D)
+ supprimerLesMorts()
+ getJoueur() : Joueur
+ setJoueur(j : Joueur)
}
abstract class Personnage{
- pv : int
- degats : int
+ Personnage(l : Labyrinthe, depart : Case, pointsDeVie : int, degats : int)
+ getCase() : Case
+ setPosition(position : Case)
+ seDeplacer(d : Direction) : boolean
+ diminuerVie(vieDown : int)
+ augmenterVie(vieUp : int)
+getPv() : int
+ attaquer(p : Personnage)
+ etreMort() : boolean
+getLabyrinthe() : Labyrinthe
+ trouverCasesAutour() : ArrayList<Case>
+ {abstract} peutTraverserChemin() : boolean
+ {abstract} peutTraverserMur() : boolean
+ {abstract} peutTraverserPiege() : boolean
+ {abstract} peutTraverserPorte() : boolean
+ {abstract} isJoueur() : boolean
+ {abstract} isTroll() : boolean
+ {abstract} dessiner(Graphics2D crayon)
}
abstract class Monstre extends Personnage{
+ Monstre(l : Labyrinthe, depart : Case, pointsDeVie : int, degats : int)
+ seDeplacerVersJoueur()
+ attaquerLeJoueur()
}
class Troll extends Monstre{
- texture : Image
- tapeDansLeTour : boolean
+Troll(l : Labyrinthe, depart :Case)
+ seRegenerer()
+trollSeFaitAttaquer()
+isTroll() : boolean
+isJoueur() : boolean
+peutTraverserMur() : boolean
+peutTraverserPorte() : boolean
+peutTraverserPiege() : boolean
+peutTraverserChemin() : boolean
+dessiner(crayon : Graphics2D)
}
class Fantome extends Monstre{
- texture : Image
+Fantome(l : Labyrinthe, depart :Case)
+isTroll() : boolean
+isJoueur() : boolean
+peutTraverserMur() : boolean
+peutTraverserPorte() : boolean
+peutTraverserPiege() : boolean
+peutTraverserChemin() : boolean
+dessiner(crayon : Graphics2D)
}
class Joueur extends Personnage{
- textureVide : Image
- textureArme : Image
- textureBouclier : Image
- textureBouclierArme : Image
+Joueur(l : Labyrinthe, entree : Porte)
+attaquerAutour()
+ajouterArme(arme : Arme)
+getArmeEnMain() : Arme
+ajouterBouclier(bouc : Bouclier)
+ diminuerVie(vieDown : int)
+peutTraverserMur() : boolean
+peutTraverserPorte() : boolean
+peutTraverserPiege() : boolean
+peutTraverserChemin() : boolean
+isTroll() : boolean
+ isJoueur() : boolean
+dessiner(crayon : Graphics2D)
}
class Bouclier{
+ texture : Image
- resistance : int
+Bouclier(resi : int)
+ getResistance(): int
+ diminuerResistance(degats : int) : int
+ etreCasseBouclier() : boolean
}
class Arme{
+ texture : Image
- degats : int
+Arme(degats : int)
+ getDegats(): int
}
abstract class Case{
+ x : int
+ y : int
+ Case(x:int, y : int)
+ {abstract} getIdentifier() : String
+ toString() : String
+ {abstract} dessiner(crayon : Graphics2D)
}
abstract class Obstacle extends Case{
+ Obstacle(x : int, y : int)
}
class Chemin extends Case{
- texture : Image
+ {static} IDENTIFIER : char
+ Chemin(x:int, y : int)
+ getIdentifier() : String
+ dessiner(crayon : Graphics2D)
+ setArme()
+ getArme() : Arme
+ setBouclier()
+ getBouclier() : Bouclier
}
class Mur extends Obstacle{
- texture : Image
+ {static} IDENTIFIER : char
+ Mur(x:int, y : int)
+ getIdentifier() : String
+ dessiner(crayon : Graphics2D)
}
class Piege extends Obstacle{
- texture : Image
+ {static} IDENTIFIER : char
+ Piege(x:int, y : int)
+ getIdentifier() : String
+ dessiner(crayon : Graphics2D)
}
class Porte extends Case{
- texture : Image
+ {static} IDENTIFIER : char
- ferme : boolean
+ Porte( x: int, y : int)
+setFerme(b : boolean)
+ isFerme() : boolean
+ getIdentifier() : String
+ dessiner(crayon : Graphics2D)
}
JeuPerso "1" --> "1" Joueur: " - pj "
Labyrinthe "1" -right-> "1" Joueur: " - joueur "
Labyrinthe "1" --> "*" Case: " - cases "
Labyrinthe "1" --> "1" Porte: " - entree "
Labyrinthe "1" --> "1" Porte: " - sortie "
Labyrinthe "1" -left-> "*" Monstre: " - lMonstre "
Personnage "1" --> "1" Case: " - position "
Personnage "1" --> "1" Labyrinthe: " - l "
Joueur "1" --> "1" Bouclier: " - bouclierEnMain "
Joueur "1" --> "1" Arme: " - armeEnMain "
Chemin "1" --> "1" Arme: " - arme "
Chemin "1" --> "1" Bouclier: " - bouclier "
@enduml | false | true | false | false | sequence |
0eba720c225335cc34145658879a85c609915aa8 | 1aa9654c18c622dcec50c65d01a4075c601f692d | /WisherApp/.idea/modules/app/app.plantuml | d6edc0f4705e37449963d92725e87fb367b78ffa | [] | no_license | iCatOK/wisher-app-android | 52e217f01757f969f9a1c7609db708d5770dbb0f | 32de7790360a816da32c86704f9bdd74021b91f0 | refs/heads/master | 2023-06-15T07:22:44.548594 | 2021-07-12T16:15:06 | 2021-07-12T16:15:06 | 370,042,960 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,301 | plantuml | @startuml
title __WISHERAPP.APP's Class Diagram__\n
namespace ru.omegapps.wisherapp {
class ru.omegapps.wisherapp.BuildConfig {
}
}
namespace ru.omegapps.wisherapp {
class ru.omegapps.wisherapp.MainActivity {
}
}
namespace ru.omegapps.wisherapp {
namespace adapters {
class ru.omegapps.wisherapp.adapters.WishBlockRecycleAdapter {
}
}
}
namespace ru.omegapps.wisherapp {
namespace adapters {
class ru.omegapps.wisherapp.adapters.WishRecycleAdapter {
}
}
}
namespace ru.omegapps.wisherapp {
namespace data_agents {
class ru.omegapps.wisherapp.data_agents.FireBaseDataAgent {
}
}
}
namespace ru.omegapps.wisherapp {
namespace data_agents {
class ru.omegapps.wisherapp.data_agents.LocalDataAgent {
}
}
}
namespace ru.omegapps.wisherapp {
namespace dto {
class ru.omegapps.wisherapp.dto.Wish {
}
}
}
namespace ru.omegapps.wisherapp {
namespace dto {
class ru.omegapps.wisherapp.dto.WishBlock {
}
}
}
namespace ru.omegapps.wisherapp {
namespace enums {
enum WishBlockEnum {
}
}
}
namespace ru.omegapps.wisherapp {
namespace enums {
enum WishEnum {
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
class ru.omegapps.wisherapp.fragments.HomeFragment {
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
class ru.omegapps.wisherapp.fragments.WishBlocksFragment {
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace auth {
class ru.omegapps.wisherapp.fragments.auth.AuthorizatonFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace auth {
class ru.omegapps.wisherapp.fragments.auth.RegistrationFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace edit {
class ru.omegapps.wisherapp.fragments.edit.CreateWishBlock {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace edit {
class ru.omegapps.wisherapp.fragments.edit.EditWishBlockFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace edit {
class ru.omegapps.wisherapp.fragments.edit.EditWishFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.AdresseeConfigFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.BeginSetupFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.EndSetupFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.MiddleSetupFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.WishGenSessionEndFragment {
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace interfaces {
interface ru.omegapps.wisherapp.interfaces.DataAgent {
}
}
}
namespace ru.omegapps.wisherapp {
namespace interfaces {
interface ru.omegapps.wisherapp.interfaces.OnMyItemClickListener {
}
}
}
namespace ru.omegapps.wisherapp {
namespace interfaces {
interface ru.omegapps.wisherapp.interfaces.OnMyItemLongClickListener {
}
}
}
namespace ru.omegapps.wisherapp {
namespace managers {
class ru.omegapps.wisherapp.managers.WishManager {
}
}
}
namespace ru.omegapps.wisherapp {
namespace utils {
class ru.omegapps.wisherapp.utils.MainUtils {
}
}
}
ru.omegapps.wisherapp.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
ru.omegapps.wisherapp.MainActivity o-- ru.omegapps.wisherapp.data_agents.FireBaseDataAgent : dataAgent
ru.omegapps.wisherapp.adapters.WishBlockRecycleAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
ru.omegapps.wisherapp.adapters.WishBlockRecycleAdapter o-- ru.omegapps.wisherapp.interfaces.OnMyItemClickListener : onMyItemClickListener
ru.omegapps.wisherapp.adapters.WishBlockRecycleAdapter o-- ru.omegapps.wisherapp.interfaces.OnMyItemLongClickListener : onMyItemLongClickListener
ru.omegapps.wisherapp.adapters.WishRecycleAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
ru.omegapps.wisherapp.adapters.WishRecycleAdapter o-- ru.omegapps.wisherapp.interfaces.OnMyItemClickListener : onMyItemClickListener
ru.omegapps.wisherapp.adapters.WishRecycleAdapter o-- ru.omegapps.wisherapp.interfaces.OnMyItemLongClickListener : onMyItemLongClickListener
ru.omegapps.wisherapp.data_agents.LocalDataAgent .up.|> ru.omegapps.wisherapp.interfaces.DataAgent
ru.omegapps.wisherapp.fragments.HomeFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.HomeFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemLongClickListener
ru.omegapps.wisherapp.fragments.HomeFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.WishBlocksFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.auth.AuthorizatonFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.auth.RegistrationFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.edit.CreateWishBlock -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.edit.EditWishBlockFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.edit.EditWishFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.AdresseeConfigFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.BeginSetupFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.wishgen.BeginSetupFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.EndSetupFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.wishgen.EndSetupFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.MiddleSetupFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.wishgen.MiddleSetupFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.WishGenSessionEndFragment -up-|> androidx.fragment.app.Fragment
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
d34a2704545a7758a19d3d53e97ba3ef28a921fc | a9471e056446ec80fd11cda0eecdc1b99884e962 | /docs/topic_publisher.plantuml | 2b202309d99ef07623116d574526d1a0077fcc5a | [
"Apache-2.0"
] | permissive | eProsima/SOSS-docs | a482518018e5c216fb8e7ba47bd426e50d686748 | 9a0375746f2c31d97a1a2070fcbf8cdf280b2740 | refs/heads/master | 2022-11-21T14:10:38.044761 | 2020-07-10T06:26:48 | 2020-07-10T06:26:48 | 256,136,727 | 0 | 0 | null | 2020-07-10T06:26:50 | 2020-04-16T07:07:01 | Makefile | UTF-8 | PlantUML | false | false | 542 | plantuml | @startuml
group #transparent advertise
SOSS -> "SystemHandle" as SH : advertise
create Publisher
SH -> Publisher : new
Publisher -> middleware : register_publisher
end
group #transparent notification
SOSS -> Publisher : publish(data)
Publisher -> Publisher : payload = convert_from_dynamicdata(data)
Publisher -> middleware : notify(payload)
end
box "Generic System Handle" #LightBlue
participant SH
participant Publisher
end box
participant middleware
@enduml | false | true | false | false | sequence |
7475a431ccd4b57a94080daef4a7cc8bab4b82af | 8c3a360b3c263815bc6a1b68620b22d03689ff76 | /hotellapp.puml | cdb7d0f244cd92df8117125ab9aa461bef1d72c7 | [] | no_license | PatrykLisik/hotel-app | 45a52b11d8d49cdd2a5d022f51a1c981ac72c486 | 2db901815424312078eff8fd20c8261a47ad4389 | refs/heads/master | 2023-01-11T10:56:53.816839 | 2019-06-25T00:38:49 | 2019-06-25T00:38:49 | 177,433,780 | 0 | 0 | null | 2022-12-22T10:49:07 | 2019-03-24T15:34:59 | JavaScript | UTF-8 | PlantUML | false | false | 1,609 | puml | @startuml
left to right direction
skinparam packageStyle rectangle
actor użytkownik as cust
actor "zalogowany użytkownik" as logged_cust
logged_cust -|> cust
actor administrator
actor manager
actor recepcjonista
rectangle "hotel website/app"{
cust -- (zobacz pokoje)
cust -- (zobacz "o hotelu")
(zobacz "o hotelu") <.- (historia budynku) : extend
(zobacz "o hotelu") <.- (pobliskie aktywności) : extend
(zobacz "o hotelu") <.- (godziny otwarcia recepcji) : extend
cust -- (zaloguj)
cust -- (utwórz konto)
(utwórz konto) -.> ( dane osobowe CRUD ) : include
(utwórz konto) -.> (email) : include
(zobacz pokoje) <.- (wybierz pokój) : extends
(zobacz pokoje) <.- (filtruj po typie pokoju) : extends
(zobacz pokoje) <.- (filtruj po wielkości pokojue) : extends
(wybierz pokój) <.- (zobacz więcej zdjęć) : extends
(wybierz pokój) <.- (metraż) : extends
(wybierz pokój) <.- (zobacz widok z okna) : extends
(wybierz pokój) <.- (lodówka? ) : extends
(lodówka? ) <.- (Darmowe napoje) : extends
(wybierz pokój) <.- (Czy ma balkon?) : extends
(wybierz pokój) <.- (Czy ma czajnik?) : extends
logged_cust -- (rezerwacja pokoju CRUD)
logged_cust -- (wcześniejsze rezerwacje)
(rezerwuj pokój) -.> (wybierz pokój) : include
(checkout and pay) -.> (rezerwuj pokój): include
(rezerwuj pokój) <.- (przekaz opnię): extend
(rezerwacja pokoju CRUD)-- recepcjonista
(zobacz wszystkie rezerwacje) -- recepcjonista
(Pracownicy CRUD) -- administrator
(Pokoje CRUD) -- administrator
(Promocje CRUD) -- manager
(Ceny pokoi) -- manager
}
@enduml | false | true | true | false | usecase |
28cc77d7128ac114169aa55684fd4e85e571fe01 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.puml | 85e33b906cb65a9adde559e5b6e853288c981e71 | [] | 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,222 | puml | @startuml
class ClipInspectorSelectionInfo {
+ start : double
+ end : double
+ duration : double
+ multipleClipStart : double
+ multipleClipEnd : double
+ smallestDuration : double
+ hasMultipleStartValues : bool
+ hasMultipleEndValues : bool
+ hasMultipleDurationValues : bool
+ supportsExtrapolation : bool
+ supportsClipIn : bool
+ supportsSpeedMultiplier : bool
+ supportsBlending : bool
+ hasBlendIn : bool
+ hasBlendOut : bool
+ selectedAssetTypesAreHomogeneous : bool
+ containsAtLeastTwoClipsOnTheSameTrack : bool
+ ClipInspectorSelectionInfo(selectedClips:ICollection<TimelineClip>)
Build() : void
+ Update() : void
InitSelectionBounds(clip:TimelineClip) : void
InitMultipleClipBounds(firstSelectedClip:TimelineClip) : void
UpdateSmallestDuration(clip:TimelineClip) : void
UpdateClipCaps(clip:TimelineClip) : void
UpdateMultipleValues(clip:TimelineClip) : void
UpdateBlends(clip:TimelineClip) : void
}
class "HashSet`1"<T> {
}
class "ICollection`1"<T> {
}
ClipInspectorSelectionInfo o-> "uniqueParentTracks<TrackAsset>" "HashSet`1"
ClipInspectorSelectionInfo --> "clips<TimelineClip>" "ICollection`1"
@enduml
| false | true | false | false | class |
7842a8a9be3bed3e6d612a188ecc19e87e298b7d | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLShippingMethodDoesNotMatchCartError.puml | 498a53816a0bfb068801f1e7be7c4a200eec854e | [] | 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 | 452 | 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 GraphQLShippingMethodDoesNotMatchCartError [[GraphQLShippingMethodDoesNotMatchCartError.svg]] extends GraphQLErrorObject {
code: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
| false | true | false | false | class |
75ec201ddfb7aa67033ae6a3ccc8bb4e781bc989 | f7389ede7c743b8ce3d174eee24ebcab316354f6 | /Diagrammer/Robo_Sumo_Battle/Communication/Sekvensdiagrammer/Wifi/Wifi_createHotspot.plantuml | f99cd218d3cfa2497b0e5d10ece25c39f3ec20da | [] | no_license | Solvgraa-mager/E3PRJ3 | 7e2b70775c0d8b8312bc893e0c9014fd766af9b0 | fb507b5528417459714c00b73c75378d6465af19 | refs/heads/master | 2023-01-31T11:01:30.966313 | 2020-12-18T10:28:55 | 2020-12-18T10:28:55 | 294,479,612 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 776 | plantuml | @startuml
title Wifi::createHotspot()
participant UC1
participant Wifi
actor OS #red
actor Connman #red
UC1 -> Wifi : createHotspot(SSID,passphrase)
Wifi -> Wifi : SSID_ = SSID\npassphrase_ = passphrase\nint err = 0
Wifi -> OS : err = echo SSID=SSID_>/etc/connman-hotspot.conf\nerr = echo PASSWORD=passphrase_>>/etc/connman-hotspot.conf
OS -> Connman : update SSID, \npassphrase
OS <-- Connman
opt err == -1 || err == 127
Wifi <-- OS : return -1 | 127
UC1 <-- Wifi : return -1 (faild to set \nSSID, passphrase)
end
Wifi <-- OS
Wifi -> OS : connman-hotspot enable
OS -> Connman : connman-hotspot enable
OS <-- Connman
opt err == -1 || err == 127
Wifi <-- OS : return -1 | 127
UC1 <-- Wifi : return -2 (faild to create hotspot)
end
Wifi <-- OS
UC1 <-- Wifi : return 0
@enduml | false | true | false | false | usecase |
1077775020434b004e8fad665ff3a48ad03bd126 | 98577189e0191c1a2d74b7541d3681f3e2c630cb | /diagrams/data-flow.puml | 1bc6cf607b2d5867bf8434bc2d6f05463ad9391b | [] | no_license | dmashchenko/isac-workshop-01 | 43b109b80c01261fa9c4a5163b880f06b0af1beb | 5e3bd29f598d7df681fc5b0ee4676f7a1e521a62 | refs/heads/main | 2023-08-24T08:36:09.878466 | 2021-10-08T17:28:00 | 2021-10-08T21:29:22 | 405,921,816 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 645 | puml | @startuml
skinparam dpi 300
frame Core {
component CoreSystem
queue Kafka
}
frame Digital{
database SqlDB
component ETLService
component NotificationService
component "REST API" as restapi
component AuthService
component MobileApp
}
actor Client
cloud NotificationProvider {
}
CoreSystem -left-> Kafka
Kafka -left-> ETLService
ETLService -down-> SqlDB
NotificationService -left-> NotificationProvider
SqlDB <-left-> restapi
SqlDB <-up-> NotificationService
AuthService <-up-> SqlDB
AuthService <-left-> restapi
restapi <-left-> MobileApp
NotificationProvider --> MobileApp
MobileApp <-left-> Client
@enduml | false | true | false | false | sequence |
75c34d45d00bde57fe94987d38bdd10f8eae2af7 | 3dfb706da28d474a904cea066737ee503df54984 | /schema.puml | 0269fde7cf10657ba34a85cb98d9eeddaeca21b4 | [] | no_license | patrickclerc/theatre-sound-control | d903303e98e4ceb6a58c0773bb0b5d28d402d19d | 5714715c0d91dc5f799561172a5395a8edc15d0a | refs/heads/main | 2023-08-29T21:07:40.963494 | 2021-11-09T19:38:42 | 2021-11-09T19:38:42 | 426,337,938 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,092 | puml | @startuml
skinparam packageStyle rect
package Laptop #linen {
package "sqlite" as sqlite <<Database>> {
}
package "expressJS" as expressJS <<Frame>> {
}
package "Chrome / angular" as angular <<Frame>> {
}
package "Sounds (.mp3)" as sounds <<node>> {
}
package "Mosquitto\n [mqtt client]" as mosquitto <<Frame>> {
}
}
sqlite <-- expressJS
sounds <-- expressJS
mosquitto <-- expressJS :msg
mosquitto --> expressJS
angular --> expressJS : HTTP
angular <-- expressJS : websocket
package "Routeur" #73beec {
package "LAN" as lan <<Frame>> {
}
package "WIFI" as wifi <<Frame>> {
}
}
package "Raspberry Pi" as rpi #FFEEEE {
package "NodeRED \n [nodejs]" as nodered<<Frame>> {
}
package "Mosquitto\n [mqtt broker]" as mosquitto_rpi <<Frame>> {
}
package "omxplayer" as omxplayer <<Frame>> {
}
package "Sounds (.mp3)" as sounds_rpi <<node>> {
}
}
nodered --> mosquitto_rpi
nodered <-- mosquitto_rpi
nodered --> omxplayer
omxplayer --> sounds_rpi
Laptop -down-.- wifi
lan -down- rpi
mosquitto_rpi --> mosquitto : msg
mosquitto_rpi <-- mosquitto
@enduml
| false | true | false | false | sequence |
80f53af9ce89087989d5ba9e27b43c5816d9ec01 | 7028a90e3cc6096e70b06e0d18c51983bf54f4d6 | /plantuml/StartPanel.puml | 58c6c2afdeaff44629974fe1bbbeb3aa62d6151e | [] | no_license | KazukiShimura/AnimalVillage | 2d73f459e9df3b839f9328309de890c09f4b1f1d | 916c5edc80613ade565b5fe481debf79f890b505 | refs/heads/main | 2023-05-06T07:27:10.043196 | 2021-05-27T01:55:47 | 2021-05-27T01:55:47 | 358,861,857 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 358 | puml | @startuml
class StartPanel {
+ DurationSeconds : float
- Awake() : void
Update() : void
+ StartButton() : void
}
MonoBehaviour <|-- StartPanel
StartPanel --> "targetObject" GameObject
StartPanel --> "mainCamera" GameObject
StartPanel --> "UICanvas" GameObject
StartPanel --> "startText" TextMeshProUGUI
StartPanel --> "EaseType" Ease
@enduml
| false | true | false | false | class |
31a06f3c0f79136c37b5f3a6baac2556f8ed244d | 52967fc781f6c838c016989270fd604c438ffe0d | /tbr-website/src/main/webapp/images/puml/oop-uml/oop-dog-properties.puml | 83f7d4592a1e6e10367f8dabe8dde6d585334366 | [] | no_license | thomasbroussard/website | c8084b733ea8d44427e3947ae065b007b3fb04a6 | 72caa7df57107961cd33e36b93d26640c8b927ae | refs/heads/master | 2021-01-13T12:40:45.213735 | 2018-12-16T07:42:27 | 2018-12-16T07:42:27 | 72,539,195 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 95 | puml | @startuml
class Dog{
..Properties..
- color
- size
- species
}
@enduml | false | true | false | false | class |
85e3aa2b1f368125ad558752626ae65a0149165e | 8e0e85b3875e06a4d76b4298decb879026847d7f | /docs/Skeleton/diagrams/Gao_seq_Comm_NE_INCLUDE-OLD!/Com/ExitHide-Robot.puml | 93ee723f10c07aecaec8b7f3e70f5e1e99f2cd36 | [] | no_license | viseguard-studios/Documentation | fba5030594be0303374d70019c7ea759316a96fe | 290312ddbeab9cf9a28147c868f3330475aebd6d | refs/heads/main | 2023-05-13T12:00:34.417075 | 2021-06-06T07:52:49 | 2021-06-06T07:52:49 | 338,383,487 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 161 | puml | @startuml
'autonumber "0:"
skinparam linestyle ortho
actor Tester as Tester
rectangle "R : Robot" as S
Tester --> S: "1 : -> ExitHiding()" "2 : <--"
@enduml | false | true | false | false | sequence |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.