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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
93226658481d97e630c517e840ce9a813a5345aa | f78c1b392eab73acfd575ccd3813b7bb6d7a65de | /strategy.puml | 0619ad0e0771caec2fce01c4293449ce82bfc51c | [] | no_license | kulkarnm/DesignPatternSamples | 6ee29023afe48edc548d28c6f3892e95e4143b4d | a336f18e86e8fe8612633c831189e2f49c673c3a | refs/heads/master | 2020-03-28T08:55:08.800490 | 2018-09-16T02:17:04 | 2018-09-16T02:17:04 | 147,999,112 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 881 | puml | @startuml
abstract class IncomeTaxCalculator
abstract class ExemptionRule {
double calculateDeductions(Income income);
}
class IndiaTaxCalculator
class UKTaxCalculator
class Exemption {
int exemptionSequence;
INSTRUMENT instrument;
double exemptionPercentage;
}
class IndiaExemptionRule
class UKExemptionRule
abstract class SlabRule {
double calculateTaxAmount(double taxableAmount);
}
class TaxSlab {
double minIncome;
double maxIncome;
double slabPercentage;
}
class IndiaSlabRule
class UKSlabRule
ExemptionRule *-- Exemption
ExemptionRule <|-- IndiaExemptionRule
ExemptionRule <|-- UKExemptionRule
SlabRule *-- TaxSlab
SlabRule <|-- IndiaSlabRule
SlabRule <|-- UKSlabRule
IncomeTaxCalculator <|-- IndiaTaxCalculator
IncomeTaxCalculator <|-- UKTaxCalculator
IncomeTaxCalculator -- ExemptionRule
IncomeTaxCalculator -- SlabRule
@enduml | false | true | false | false | class |
cb9592aa2a2b2e9bb5b464bd5ab2a9d9d060fae0 | ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb | /projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/features/Order.OrderState.puml | 30f1926507bbc3a126082aad413e47c0ac1865ec | [] | no_license | itachi1706/How-to-use-Git-NTUSCSE1819-Site | d6fcba79d906e9916c3961b11a6e1318d8a0f602 | dbce2f56b42e15be96bd40fd63e75389d397ca34 | refs/heads/master | 2021-07-12T15:24:44.197085 | 2020-08-01T12:31:23 | 2020-08-01T12:31:23 | 172,893,030 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 230 | puml | @startuml
enum Order.OrderState [[../sg/edu/ntu/scse/cz2002/features/Order.OrderState.html]] {
{static} +ORDER_PAID
{static} +ORDER_UNPAID
}
center footer UMLDoclet 1.1.3, PlantUML 1.2018.12
@enduml
| false | true | false | false | class |
9f3e97a1bf66b44adee8a255e7b721a384c32235 | c2d3b5af652f5f82ffce8be69518b4210c8bb1d1 | /src/_1_객체_설계/_3_설계_개선하기/IndependentAudienceTicketSellerEx2.puml | cada9eaccd34c6ffc7337e9ed846e95cfbe17bf9 | [] | no_license | kyh1126/object_study | 9f04c5674f1d9613ef9b804c9e5cf4c31eb1cec5 | 82eb4c7653b7260f2ee749c1ef7b466f16c0a924 | refs/heads/master | 2022-11-28T21:09:55.959534 | 2020-08-11T23:04:46 | 2020-08-11T23:04:46 | 291,427,529 | 3 | 0 | null | 2020-08-30T08:08:23 | 2020-08-30T08:08:23 | null | UTF-8 | PlantUML | false | false | 843 | puml | @startuml
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
}
class Audience {
bag
getBag()
}
class TicketSeller {
sellTo(audience)
}
class Theater {
enter(audience)
}
class Invitation {
when
}
class Ticket {
fee
getFee()
}
class Bag {
amount
hasInvitation()
hasTicket()
setTicket(ticket)
minusAmount(amount)
plusAmount(amount)
}
class TicketOffice {
amount
getTicket()
minusAmount(amount)
plusAmount(amount)
}
hide empty members
hide empty methods
Theater --> "ticketSeller" TicketSeller
Theater ..> Audience
TicketSeller --> "ticketOffice" TicketOffice
TicketSeller .. Audience
TicketSeller ..> Ticket
Audience --> "bag" Bag
Bag --> "invitation" Invitation
Bag --> "ticket" Ticket
TicketOffice *--> " tickets" Ticket
@enduml
| false | true | false | false | class |
ff9f8151151c72a5c609d5fc3356a362b33fd9d1 | 1f83c16c71c50c67514b2eb47503f391eea031cd | /input/images-source/MHD_ActorDiagram_ITI-67.plantuml | ccab2a4a61ba7f6aaf414a9d385d3f1419cdbfea | [] | no_license | costateixeira/ch-epr-mhealth | c4b57185f48070fdcf9c11eed420d6619f2d28ac | 85af8017164a027f66fc605dd7047a08e1dad2a5 | refs/heads/master | 2023-07-24T04:12:52.176956 | 2021-06-15T15:36:55 | 2021-06-15T15:36:55 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 361 | plantuml | @startuml
title Interaction Diagram for [ITI-67]
participant consumer as "Document\nConsumer"
participant responder as "Document\nResponder"
consumer -> responder: Find Document References Request Message
activate consumer
activate responder
responder -> consumer: Find Document References Response Message
deactivate responder
deactivate consumer
@enduml | false | true | false | false | sequence |
e96b8e7871bdb3c653d5e97ab786a8fd8caeee72 | b492aa270b97698fbb55e9a82f31f26cb5dc1f13 | /doc/images/sqlmerge.puml | d7ef76f244bdd0fc9e8fad55200560d5faa41ca3 | [] | no_license | udaparts/socketpro | e06375f46413a37122c6c94ead152cef6e9b3e5f | 7da1c4256235fd232cbd24ac212cb76d05eee36f | refs/heads/master | 2023-02-24T02:19:27.393802 | 2023-02-16T21:19:56 | 2023-02-16T21:19:56 | 83,337,286 | 36 | 13 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,013 | puml | @startuml
actor Client as client
participant "SocketPro\nServer Plugin" as SpServer
database Database as DB
client -[#fc0303]> SpServer : R0
client -[#fc0303]> SpServer : R1
client -[#fc0303]> SpServer : R2
client -[#fc0303]> SpServer : R...
client -[#fc0303]> SpServer : RN
SpServer -[#fc8803]> SpServer: Merge R0, R1, R2, R..., RN in streaming into a combined SQL
SpServer -> DB: Execute the combined SQL
DB --> SpServer: Response a set of results
SpServer --[#0373fc]> SpServer: Split the set of results into r00, r01, r02, r10, r20, r21,\nr22, r2..., r2m, r..., RN0, RN1 in streaming
SpServer --[#0b03fc]> client: r00
SpServer --[#0b03fc]> client: r01
SpServer --[#0b03fc]>o client: r02
SpServer --[#0b03fc]>o client: r10
SpServer --[#0b03fc]> client: r20
SpServer --[#0b03fc]> client: r21
SpServer --[#0b03fc]> client: r22
SpServer --[#0b03fc]> client: r2...
SpServer --[#0b03fc]>o client: r2m
SpServer --[#0b03fc]>o client: r...
SpServer --[#0b03fc]> client: rN0
SpServer --[#0b03fc]>o client: rN1
@enduml
| false | true | false | false | sequence |
f8dc8e4a23a2627ffb8570a0dfce98ed4b540aea | f7389ede7c743b8ce3d174eee24ebcab316354f6 | /Diagrammer/Robo_Sumo_Battle/Communication/Sekvensdiagrammer/TCP/TCPServer/TCPServer_receiveMsg.plantuml | a6744cd6d4562d197bf712ed405de1928bda0773 | [] | 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 | 523 | plantuml | @startuml
title TCPServer::receiveMsg(char *buffer, int bufferLegth)
participant UC1
participant TCPServer
UC1 -> TCPServer : receiveMsg(buffer, bufferLenght)
TCPServer -> TCPServer : bytesReceived = receiveMsg\n(clientSocket_, buffer, bufferLength, 0)
alt bytesReceived == -1
UC1 <-- TCPServer : return -1 (received faild)
else bytesReceived == 0
UC1 <-- TCPServer : return -2 (client disconnected)
end
note over TCPServer : prints received\nmessage
UC1 <-- TCPServer : return 0 (msg received in buffer)
@enduml | false | true | false | false | sequence |
800e7150cfa2e098340ccfef6158b14f4e40bfb9 | f15fd2dd26637efbb02dda284673da9627066f11 | /patterns/negotiation-state.puml | 7851229bf5fab77282d3857b12cf7e8428a5709c | [] | no_license | dhh1128/protocol | 19fb3563e8b1b1e64e2d151c98c7801016165d83 | 5ca68975acbd5ad82bb271026cb2e0de7d1eeb62 | refs/heads/master | 2020-03-14T00:09:27.968083 | 2019-10-04T15:47:17 | 2019-10-04T15:47:17 | 127,847,109 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,486 | puml | @startuml
title States for the Negotiation Pattern
state Acquirer {
state "<b>Dead" as aDead
state "<b>Complete" as aComplete
[*] --> HasOffer : got\n<font color=green><b>OFFER
[*] --> Requested : send\n<font color=green><b>REQUEST
Requested --> HasOffer : counter\noffer\nreceived\n(got\n<font color=green><b>OFFER</font>)
HasOffer --> Requested : accept\n(send\n<font color=green><b>REQUEST</font>)
HasOffer --> OfferDeclined : decline
OfferDeclined --> aDead : abandon\nnegotiation
OfferDeclined --> Requested : counter\n(send\n<font color=green><b>REQUEST</font>)
Requested --> Received : got\n<font color=green><b><MATTER>
Received --> aComplete : acknowledge\n(send\n<font color=green><b>ACK</font>)
Received --> aComplete : ACK\nNot\nNeeded
aDead --> [*]
aComplete --> [*]
}
state Provider {
state "<b>Dead" as pDead
state "<b>Complete" as pComplete
[*] --> Offered : offer\n(send\n<font color=green><b>OFFER</font>)
Offered -> HasRequest : got\n<font color=green><b>REQUEST
[*] --> HasRequest : got\n<font color=green><b>REQUEST
HasRequest --> RequestRejected : reject
RequestRejected --> Offered : counter\n(send\n<font color=green><b>OFFER</font>)
HasRequest --> Fulfilled : fulfill\n(send\n<font color=green><b><MATTER></font>)
Fulfilled --> pComplete : got\n<font color=green><b>ACK
Fulfilled --> pComplete : ACK\nnot\nneeded
RequestRejected --> pDead : abandon\nnegotiation
pDead --> [*]
pComplete --> [*]
}
@enduml
| false | true | false | false | sequence |
251e8d581e990480ce4218c1b61e7b3c5a055cc0 | a81e562f727c45dbbca8c325630d0e26005d651c | /docs/plantuml/components/WorkerPage.puml | e05c41e2d07b191f7ca1da7f94485a3fe6f669b6 | [] | no_license | kelvinleclaire/PA2 | 46768de9af832d892812d39b248bf1636eb52db3 | 39fc53a5ecbcdecd81ace88a5f681769dc62813c | refs/heads/main | 2023-04-30T16:37:05.951439 | 2021-05-18T10:21:49 | 2021-05-18T10:21:49 | 368,485,770 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 220 | puml | @startuml
'https://plantuml.com/class-diagram
class Worker {
.. Start consts ..
pageStatus
history
currentUserState
openLoginPage()
setPageStatus()
.. End consts ..
contentSwitch()
}
@enduml
components
| false | true | false | false | class |
416e85e1f68264accdface6ebf91676e8f7a5f62 | 608c7301bf1eaed2b79855fd8030b15e4fc0d4aa | /docs/uml/sequence_diagram/pathFollower.puml | 037feffd8e8765533ff8f48dcdc22db2818b0b8a | [] | no_license | mehmetrizaoz/autonomous_steering_agents | 48d0fbba36eafd081c78b825687d156bb02a5764 | 5d901252f66b68bfcaf48dd7da6145b1bdc462f0 | refs/heads/master | 2023-05-15T07:28:49.473767 | 2021-06-14T10:43:48 | 2021-06-14T10:43:48 | 356,524,673 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,220 | puml | @startuml
actor actor as user
participant graphics as view
participant agent as agent
participant path as way
participant behavior as steeringBehavior
participant pathFollower as pF
user -> pF: user defines scenario
activate way
activate view
activate view
activate agent
activate steeringBehavior
note left: anytime
user -> view: set mouse position
loop triggered with 20ms periodic event
loop for all agents
pF -> agent: set agent target position
pF -> steeringBehavior: request stayInPath force for agent
steeringBehavior -> way: request path
way -> steeringBehavior: gives path info
steeringBehavior --> pF: gives stayInPath force
pF -> steeringBehavior: request separation force for agent
steeringBehavior --> pF: gives separation force
pF -> agent: set force
pF -> agent: set arriving behavior
end
loop for all obstacles
pF -> view: draw obstacle
end
agent -> agent: calculate next position
pF -> view: draw agents
pF -> view: draw title
pF -> view: refresh
end
user -> view: stop program
deactivate pF
deactivate view
deactivate way
deactivate agent
deactivate steeringBehavior
@enduml | false | true | false | false | sequence |
355354e817d974237f6667ce2aa5a9677cccddfe | 72ef24d7b57f53c2b953ba15e60d191412310489 | /docs/sequence_diagrams/seq_2_1-customer-registration.plantuml | 6e195e0e5a345ac08683c09fc4ac0edd9373b6bd | [] | no_license | yourfrienddhruv/coffeeshop-services | 2d6c4f3663dfc7ce941ee581fe056b748322313a | b81bc7d5b5c7e72646643564b2bae584917c62c5 | refs/heads/master | 2023-01-23T00:50:41.737577 | 2020-11-29T19:00:41 | 2020-11-29T19:00:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 497 | plantuml | @startuml
== Register ==
Customer -> CustomerService: Register
note left
- Name
- Address
- Mobile Number
- Credentials
end note
CustomerService -> CustomerService: Verify Details
CustomerService -> AuthService: Store Credentials
CustomerService <-- AuthService
Customer <-- CustomerService: Customer Details
== Obtain Auth Token ==
Customer -> AuthService: Create Token
note left
Credentials
end note
AuthService -> AuthService: Verify Credentials
Customer <-- AuthService: Token
@enduml | false | true | false | false | sequence |
312feece5ecc6519a0afc8eddaad207f38a5fe7f | 8a63b0892998da88f779e8a105831b644232540c | /DesignPatternlib/src/main/java/com/lhf/designpatternlib/bridge/bridge.puml | ca8aa4ae737af8f1109404238c498d909c632021 | [] | no_license | Joshua-Lu/MyStudyApp | b57311677135f3f5e0c98236afbbb14bdae8cbf1 | 6ca03dfd1bcbcb72bf53459949ee34a1879535b7 | refs/heads/master | 2023-08-09T19:00:38.909776 | 2023-07-30T16:15:28 | 2023-07-30T16:15:28 | 225,662,424 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 249 | puml | @startuml
interface IColor {
getColor()
}
class Green implements IColor
class Red implements IColor
abstract class Bag {
# IColor color
+ abstract void show()
}
class HandBag extends Bag
class Wallet extends Bag
Bag o- IColor
@enduml | false | true | false | false | class |
07c7c03f957d003484949061331f7a1c1183feed | 13565a0b6077f78b773576035cbd2752871240bc | /Babenko/BabenkoDydykDiplomaProject/out/production/BabenkoDydykDiplomaProject/GeneticRace/profile/profile.plantuml | a11f0d358e3e692c7d9b979beb7f642c3c196593 | [
"Apache-2.0"
] | permissive | vbabenk/GeneticRace | 92ff1da794f7a83fba01e3dbeca91c1b36b7fcbd | 37f1731fc003755b1c1d03caaa09b0ace55bedd6 | refs/heads/master | 2021-08-02T19:02:15.575865 | 2021-07-30T15:26:45 | 2021-07-30T15:26:45 | 218,497,240 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,167 | plantuml | @startuml
title __PROFILE's Class Diagram__\n
package GeneticRace.profile {
class ProfileController {
- surnameField : TextField
- firstnameField : TextField
- middlenameField : TextField
- sexBox : ChoiceBox<String>
- birthdayField : TextField
- secondDoctorField : TextField
- lpaField : TextField
- nakataField : TextField
- vedpField : TextField
- ppaField : TextField
- ediField : TextField
- pvrField : TextField
- riskField : TextField
- zScoreField : TextField
- hypertrophyBox : ChoiceBox<String>
- rBox : ChoiceBox<String>
- basBox : ChoiceBox<String>
- backBtn : Button
+ initialize()
+ backToMenu()
+ addToDatabase()
}
}
package GeneticRace.profile {
class ProfileModel {
+ addNewPatient()
}
}
ProfileController o-- ProfileModel : profileModel
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 |
82bbcd065c5b50afb2b38a78007b197835145d34 | 437209e1004593f3222ac1bf630279ba28576f7b | /rsocket-responder.puml | 4655d90e8db0868d38ee5195ef425347ad3c6a55 | [] | no_license | linux-china/rsocket-simple-demo | d7e8ccf1ab3001bfbe5e067e7000b972a2cc0490 | eb31692a1b164cf8a1dcc0d3974360b5dd324fd3 | refs/heads/master | 2020-12-26T10:56:20.348469 | 2020-02-05T18:07:37 | 2020-02-05T18:07:37 | 237,488,096 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 783 | puml | @startuml
abstract class AbstractRSocket {
MonoProcessor<Void> onClose;
Mono<Payload> requestResponse(Payload payload);
Mono<Void> fireAndForget(Payload payload);
Flux<Payload> requestStream(Payload payload);
Flux<Payload> requestChannel(Publisher<Payload> payloads)
Mono<Void> metadataPush(Payload payload)
void dispose();
}
class SimpleResponderFactory {
List<SimpleResponderImpl> handlers;
SocketAcceptor responder();
Mono<RSocket> createResponder(ConnectionSetupPayload setupPayload, RSocket requester);
}
class SimpleResponderImpl extends AbstractRSocket {
String id;
RSocket requester;
Mono<Void> comboOnClose;
Mono<Void> onClose();
}
SimpleResponderFactory -right-> SimpleResponderImpl: Create responder handler
@enduml | false | true | false | false | sequence |
535bb027f60de5e73ae03a5af4b42fcdb68b467f | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/Asset.puml | fd60fabf0618230898a73f160b3eff668f05ec4a | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,944 | 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 Asset [[Asset.svg]] {
id: String
sources: [[AssetSource.svg List<AssetSource>]]
name: [[LocalizedString.svg LocalizedString]]
description: [[LocalizedString.svg LocalizedString]]
tags: [[String.svg List<String>]]
custom: [[CustomFields.svg CustomFields]]
key: String
}
interface Category [[Category.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
name: [[LocalizedString.svg LocalizedString]]
slug: [[LocalizedString.svg LocalizedString]]
description: [[LocalizedString.svg LocalizedString]]
ancestors: [[CategoryReference.svg List<CategoryReference>]]
parent: [[CategoryReference.svg CategoryReference]]
orderHint: String
externalId: String
metaTitle: [[LocalizedString.svg LocalizedString]]
metaDescription: [[LocalizedString.svg LocalizedString]]
metaKeywords: [[LocalizedString.svg LocalizedString]]
custom: [[CustomFields.svg CustomFields]]
assets: [[Asset.svg List<Asset>]]
key: String
}
interface ProductVariant [[ProductVariant.svg]] {
id: Long
sku: String
key: String
prices: [[Price.svg List<Price>]]
attributes: [[Attribute.svg List<Attribute>]]
price: [[Price.svg Price]]
images: [[Image.svg List<Image>]]
assets: [[Asset.svg List<Asset>]]
availability: [[ProductVariantAvailability.svg ProductVariantAvailability]]
isMatchingVariant: Boolean
scopedPrice: [[ScopedPrice.svg ScopedPrice]]
scopedPriceDiscounted: Boolean
}
Asset --> Category #green;text:green : "assets"
Asset --> ProductVariant #green;text:green : "assets"
@enduml
| false | true | false | false | sequence |
55cfa16280b6a44c20337436ac95dd15b5d3076b | d2a19b07354480392ca76f3a9cfdb59672b9bced | /docs/hosting/fase1.puml | 231796f8568b6115b29a571f844d1b2e4b8ecb15 | [] | no_license | danskernesdigitalebibliotek/plantuml | 4b109bab8a790e28fada98770a6ca25774bb4199 | e654bbf040f6d74d53dbf5fc56588b042b1d12bb | refs/heads/master | 2021-09-24T02:18:46.708657 | 2021-09-17T07:07:16 | 2021-09-17T07:07:16 | 187,801,964 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 557 | puml | @startuml
title Hosting - Fase 1 ....
node "Cloud" as cloud {
package "Redmine" {
component [Issue tracker] as IssueCms
component [Wiki] as WikiCms
database "Redmine Data Storage" as dbRedmine {
}
}
package "Docker" {
component [Follow search] as FS
component [Loan History] as LH
}
}
database "Data Storage" {
[Loan Histories] as tLH
[Saved searches] as tFS
}
'cloud -hidden-> "Data Storage"
IssueCms --> dbRedmine
WikiCms --> dbRedmine
FS -down-> tFS
LH -down-> tLH
@enduml
| false | true | false | false | sequence |
9361ad09907aa7a84938a2bac11ffe0d3e94a64b | 40f8107fdd2afa1f9c41d4d02b32298258bd3ae7 | /docs/source/pic/src/flow.puml | e3a95ded103756f66dc287cec1cab8f9fc7a54f7 | [
"Apache-2.0"
] | permissive | ConvergeTP/von_tails | 91f62e722325e1a0845e766359dae94de13076d3 | 98ce984b001cd09005b6496ce10687588def53ef | refs/heads/master | 2020-05-30T23:18:30.532496 | 2019-08-21T14:30:58 | 2019-08-21T14:30:58 | 170,901,819 | 0 | 0 | Apache-2.0 | 2019-04-02T18:01:45 | 2019-02-15T17:18:29 | Python | UTF-8 | PlantUML | false | false | 3,419 | puml | @startuml
/'
Copyright 2017-2019 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'/
skinparam ParticipantPadding 20
skinparam BoxPadding 20
title Tails Synchronization Sequence
box "Issuer" #SeaShell
actor "Issuer Anchor" as issuer
participant "Local Tails Dir" as dir_tails_i
participant "Sync script" as sync_i
endbox
participant "Tails Server" as tails
box "Holder-Prover" #SeaShell
participant "Sync script" as sync_hp
participant "Local Tails Dir" as dir_tails_hp
actor "Holder-Prover Anchor" as hp
endbox
actor Actuator as ator
note over issuer, dir_tails_i
need new revocation registry
endnote
ator -> issuer: issue revocable credential
group credential issue process implements
issuer -> issuer: rev reg full? Yes
issuer -> issuer: create new rev reg
issuer -> dir_tails_i: write tails
dir_tails_i --> issuer:
issuer --> ator: credential
end group
loop while tails file not available
ator -> ator: get rev reg id\nfrom credential
ator -> hp: list tails file rev reg ids
group holder-prover implements
hp -> dir_tails_hp: get rev reg ids
dir_tails_hp --> hp: rev reg ids
hp --> ator: rev reg ids
end group
ator -> ator: have rev reg id\nfrom credential?\nNo
end loop
group sync script implements
sync_i -> dir_tails_i: get local tails files
dir_tails_i --> sync_i: local tails files
sync_i -> tails: get remote tails files
tails --> sync_i: remote tails files
sync_i -> tails: upload local-only tails files
tails --> sync_i:
end group
group sync script implements
sync_hp -> dir_tails_hp: get local tails files
dir_tails_hp --> sync_hp: local tails files
sync_hp -> tails: get remote tails files
tails --> sync_hp: remote tails files
sync_hp -> tails: download remote-only tails files
tails --> sync_hp: tails files
sync_hp -> dir_tails_hp: write remote-only tails files
dir_tails_hp --> sync_hp:
end group
ator -> ator: get rev reg id\nfrom credential
ator -> hp: list tails file rev reg ids
group holder-prover implements
hp -> dir_tails_hp: get rev reg ids
dir_tails_hp --> hp: rev reg ids
hp --> ator: rev reg ids
end group
ator -> ator: have rev reg id\nfrom credential?\nYes
ator -> hp: store credential
group credential storage process implements
hp -> hp: get rev reg id\nfrom credential
hp -> dir_tails_hp: have tails file\nfor rev reg id?
dir_tails_hp --> hp: Yes
hp -> hp: store credential
hp --> ator: wallet cred id
end group
ator -> hp: create proof
group proof creation process implements
hp -> dir_tails_hp: read tails file\nfor rev reg id
dir_tails_hp --> hp:
hp -> hp: create proof
hp --> ator: proof
end group
@enduml
| false | true | false | false | usecase |
c25d00843ccba8e48115166db7a50f54d72bac22 | 8b582d97147ab82111556fbad185b293590aaeed | /diagram.plantuml | 5258e8b8962e56ff568466bf2463d1de3ed353b2 | [] | no_license | copernicus231/challenge-service | 53d7069139a2ce8b7b4537208c072cbed10c73de | b29735a5189271dadd0fe23f7ab70f2bac7f10fb | refs/heads/master | 2023-01-20T05:42:23.824789 | 2020-11-30T04:33:08 | 2020-11-30T04:33:08 | 316,803,439 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 585 | plantuml | @startuml
actor User as User
cloud "mongodb atlas" as atlas{
database "cluster0.43ml0.mongodb.net" <<Database>>as db{
entity products
}
}
cloud Heroku as heroku {
node "https://fast-dusk-49022.herokuapp.com/graphql" <<Container>>{
artifact "discount-service" as graphService {
stack "spring-boot"
stack "spring-data-mongo"
stack "graphql-java"
}
}
node "https://shielded-plateau-90749.herokuapp.com" <<Container>>{
artifact "discount-app" as reactApp{
stack reactjs
stack "apollo-react"
}
}
User -> reactApp
reactApp --> graphService
graphService --> db
@enduml
| false | true | false | false | sequence |
ebdf48683567151d2919c342a87afeb12c7d507c | f83f4b7544b2aa5ad7788cfb5fb310b7e0bf4378 | /AOC/TP1/M2/UpdateAsync1.puml | e145efa3f8e09fea13e7ec0ba40a6da4c1df24fa | [] | no_license | malahx/ISTIC | dc3d65b75e6bae6b5f9bd1e0740770501eb2ef0f | 98e076592b39b18b3d8d5148a74ff29006f01092 | refs/heads/master | 2021-07-12T20:30:32.247849 | 2019-02-16T09:05:23 | 2019-02-16T09:05:23 | 148,325,439 | 1 | 4 | null | null | null | null | UTF-8 | PlantUML | false | false | 648 | puml | @startuml
box "Client"
participant "g : Generator" as g
participant "d : Diffusion" as d
end box
box "Proxy"
participant "c: canal" as c
end box
box "Scheduler"
participant "s : Scheduler" as s
end box
box "Active Object"
participant "aq : ActiveQueue" as aq
end box
activate g
activate c
activate s
g -> g: setValue(v)
g -> d: execute(g)
deactivate g
activate d
d -> c: update(g)
deactivate d
create "mi : UpdateMI" as mi
c -> mi: create()
c -> s: schedule(mi)
s -> aq: add(mi)
activate aq
aq --> s
deactivate aq
create "f : Future" as f
s -> f: create()
s --> c: f
c --> d: f
activate d
d --> g: f
deactivate d
activate g
@enduml | false | true | false | false | sequence |
3eac74f2e327a2e0490142e7373658c8d9d3ceec | cacaa870320bc9a6a40d96bcd39b9cefe8173e57 | /UML/ClassDiagram/Player.puml | aab7a02ba5d43df4a0ae073995926fd653941920 | [] | no_license | MINI-IO/IO-project-game | efc8a9a38918cee11778e94d48c1a05c1ccca59f | 8b4c8f2b0f00cdc301e24b2930d01685fbd72b0e | refs/heads/master | 2022-04-18T10:09:55.575034 | 2020-04-02T18:08:11 | 2020-04-02T18:13:39 | 216,227,976 | 12 | 6 | null | 2020-04-02T17:58:00 | 2019-10-19T15:29:31 | TeX | UTF-8 | PlantUML | false | false | 1,057 | puml | @startuml
skinparam shadowing false
skinparam monochrome true
skinparam classAttributeIconSize 0
hide circles
skinparam class {
BackgroundColor white
}
IStrategy <|.. Strategy
Player *-- "4..*" Field
Player *-- "1" IStrategy
Player *-- "1" ISender
Player ..> GoalInfo
Player ..> Team
class Player {
- id: int
- sender: ISender
+ penaltyTime: int
+ team: Team
+ isLeader: bool
+ hasPiece: bool
+ board Field[,]
+ position: Tuple<int, int>
+ waitingPlayers: List<int>
- strategy: IStrategy
+ teamMates: int[]
+ Player()
+ JoinTheGame()
+ Start()
+ Stop()
+ Move()
+ Put()
+ BegForInfo()
+ GiveInfo()
+ RequestsResponse()
+ CheckPiece()
+ AcceptMessage()
+ MakeDecisionFromStrategy()
- Communicate()
- Penalty()
}
class Field{
+ goalInfo: GoalInfo
+ playerInfo: bool
+ distToPiece: int
}
interface IStrategy <<interface>> {
+ MakeDecision()
}
interface ISender <<interface>> {
+ SendMessage()
}
class Strategy {
+ MakeDecision()
}
enum Team <<enumeration>> {
Red
Blue
}
enum GoalInfo <<enumeration>> {
IDK
DiscoveredNotGoal
DiscoveredGoal
}
@enduml
| false | true | false | false | class |
0d05575dc60a2d54da8714032362d9251b3f7de2 | f37e90775a158ea0ae644e334eac5bba341f4989 | /Documentation+/PlantUml/deployment/declaring.puml | 9655cbfa78452d36b83d447438e1eac954d52b33 | [] | no_license | Aleks-Ya/yaal_examples | 0087bbaf314ca5127051c93b89c8fc2dcd14c1e3 | ec282968abf1b86e54fc2116c39f2d657b51baac | refs/heads/master | 2023-09-01T07:40:44.404550 | 2023-08-27T15:24:34 | 2023-08-29T22:01:46 | 14,327,752 | 4 | 2 | null | 2021-06-16T20:39:19 | 2013-11-12T09:26:08 | Java | UTF-8 | PlantUML | false | false | 332 | puml | @startuml
actor actor
agent agent
artifact artifact
boundary boundary
card card
cloud cloud
component component
control control
database database
entity entity
file file.txt
folder folder
frame frame
interface interface
node node
package package
queue queue
stack stack
rectangle rectangle
storage storage
usecase usecase
@enduml | false | true | false | false | usecase |
2b46ce2bd6600cb6682e628d6dc759d97bd64257 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/RoundingMode.puml | d84ca847e6940c8fd55a302e52be39cc5ca7f5a4 | [] | 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 | 11,628 | puml | @startuml
hide methods
enum RoundingMode {
HALF_EVEN
HALF_UP
HALF_DOWN
}
interface Cart [[Cart.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalLineItemQuantity: Long
totalPrice: [[CentPrecisionMoney.svg CentPrecisionMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
cartState: [[CartState.svg CartState]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
custom: [[CustomFields.svg CustomFields]]
deleteDaysAfterLastModification: Integer
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface CartDraft [[CartDraft.svg]] {
currency: String
key: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
anonymousId: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[LineItemDraft.svg List<LineItemDraft>]]
customLineItems: [[CustomLineItemDraft.svg List<CustomLineItemDraft>]]
taxMode: [[TaxMode.svg TaxMode]]
externalTaxRateForShippingMethod: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
shippingMode: [[ShippingMode.svg ShippingMode]]
customShipping: [[CustomShippingDraft.svg List<CustomShippingDraft>]]
shipping: [[ShippingDraft.svg List<ShippingDraft>]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
discountCodes: [[String.svg List<String>]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
deleteDaysAfterLastModification: Long
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface CartChangeTaxRoundingModeAction [[CartChangeTaxRoundingModeAction.svg]] {
action: String
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
}
interface StagedOrderChangeTaxRoundingModeAction [[StagedOrderChangeTaxRoundingModeAction.svg]] {
action: String
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
}
interface Order [[Order.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
cart: [[CartReference.svg CartReference]]
quote: [[QuoteReference.svg QuoteReference]]
orderState: [[OrderState.svg OrderState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
paymentState: [[PaymentState.svg PaymentState]]
state: [[StateReference.svg StateReference]]
syncInfo: [[SyncInfo.svg List<SyncInfo>]]
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
lastMessageSequenceNumber: Long
custom: [[CustomFields.svg CustomFields]]
completedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface OrderImportDraft [[OrderImportDraft.svg]] {
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[LineItemImportDraft.svg List<LineItemImportDraft>]]
customLineItems: [[CustomLineItemImportDraft.svg List<CustomLineItemImportDraft>]]
totalPrice: [[Money.svg Money]]
taxedPrice: [[TaxedPriceDraft.svg TaxedPriceDraft]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
shippingInfo: [[ShippingInfoImportDraft.svg ShippingInfoImportDraft]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
paymentState: [[PaymentState.svg PaymentState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
orderState: [[OrderState.svg OrderState]]
state: [[StateReference.svg StateReference]]
country: String
origin: [[CartOrigin.svg CartOrigin]]
completedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface QuoteRequest [[QuoteRequest.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
quoteRequestState: [[QuoteRequestState.svg QuoteRequestState]]
comment: String
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
shippingAddress: [[Address.svg Address]]
billingAddress: [[Address.svg Address]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
country: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
itemShippingAddresses: [[Address.svg List<Address>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
custom: [[CustomFields.svg CustomFields]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
cart: [[CartReference.svg CartReference]]
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface Quote [[Quote.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
quoteRequest: [[QuoteRequestReference.svg QuoteRequestReference]]
stagedQuote: [[StagedQuoteReference.svg StagedQuoteReference]]
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
validTo: DateTime
sellerComment: String
buyerComment: String
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
shippingAddress: [[Address.svg Address]]
billingAddress: [[Address.svg Address]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
country: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
itemShippingAddresses: [[Address.svg List<Address>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
custom: [[CustomFields.svg CustomFields]]
quoteState: [[QuoteState.svg QuoteState]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
RoundingMode --> Cart #green;text:green : "taxRoundingMode"
RoundingMode --> CartDraft #green;text:green : "taxRoundingMode"
RoundingMode --> CartChangeTaxRoundingModeAction #green;text:green : "taxRoundingMode"
RoundingMode --> StagedOrderChangeTaxRoundingModeAction #green;text:green : "taxRoundingMode"
RoundingMode --> Order #green;text:green : "taxRoundingMode"
RoundingMode --> OrderImportDraft #green;text:green : "taxRoundingMode"
RoundingMode --> QuoteRequest #green;text:green : "taxRoundingMode"
RoundingMode --> Quote #green;text:green : "taxRoundingMode"
@enduml
| false | true | false | false | sequence |
212d04d89c917f1d8628b2d63a977f98c6e8828b | 87a39a2accae7728814604499f98d86b94aeb1e0 | /design/planner_structure.puml | cf2ec87add80d2e7f661e21ec0b588450bd2ecac | [
"BSD-3-Clause"
] | permissive | kyberszittya/hotaru_planner | 6e885b78d9b846513b9d1ef432b0a6607360f7e4 | 2c73b16ac5ca43e633c7e5ee20863673a9de5a79 | refs/heads/master | 2023-06-04T07:45:43.755192 | 2021-06-24T08:05:52 | 2021-06-24T08:05:52 | 240,115,639 | 1 | 1 | BSD-3-Clause | 2021-06-24T08:05:53 | 2020-02-12T21:08:32 | Python | UTF-8 | PlantUML | false | false | 681 | puml | @startuml HotaruPlannerComposition
class AbstractPlannerImplementation {
{field}
{method}{abstract} # void on_update_trajectory
{method}{abstract} # plan_algorithm()
{method} # void refine()
{method} # serialize_trajectory()
{method} + void plan()
}
class AbstractGraphAlgorithmPlannerComponent {
{method} # List[TreeNode] backtrack_trajectory (TreeNode)
{method} # plan_algorithm
}
class PlannerNode {
{method} + connect_to_node ()
{method} # cb_trajectory()
{method} # cb_timer_planner()
}
PlannerNode *-- AbstractPlannerImplementation: planner_adapter
AbstractPlannerImplementation <|-- AbstractGraphAlgorithmPlannerComponent
@enduml | false | true | false | false | class |
ceb5adc84f6f688dd05bf14068996635164726e1 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/towards/pathdepexpl.puml | 9e9ac4320c14f4ad6a01a7c74d94bc08904842fd | [
"MIT"
] | permissive | tizuck/scala-uml-diagrams | 4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b | c5c432132bff9df7ab60352f0e715583d9d51973 | refs/heads/main | 2023-03-01T02:44:15.288794 | 2021-02-03T22:26:55 | 2021-02-03T22:26:55 | 306,687,367 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,002 | puml | @startuml
class Franchise< self:Franchise > {
<<ctor pos=1>> name:String
}
class Character <<caseclass>> {
<<ctor pos=1>> name:String
}
class FranchiseConcrete <<pathdep>>
FranchiseConcrete *--> "\n\n\n\n1" FranchiseConcrete : this
Franchise <|.. FranchiseConcrete : <<bind self -> this>>
class Seq1 <<plist>> {
}
class Seq2 <<plist>> {
a:f.Character
b:f.Character
}
Franchise +-- Character
fanFiction +-- Seq1
fanFiction +-- Seq2
Seq1 --> "1 " FranchiseConcrete : f
Seq2 --> "1" FranchiseConcrete: f
class fanFiction <<object>> {
<<def>> createFanFiction(s1:Seq1,s2:Seq2)
}
hide circle
skinparam defaultFontName Source Code Pro
skinparam ClassStereotypeFontColor #1b1f23
skinparam class {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #6f42c1
}
skinparam note {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #d73a49
}
skinparam stereotype {
FontColor #d73a49
}
@enduml | false | true | false | false | sequence |
6a6682c35c948fa161724fbd252b1128521c0c64 | ceb68c034ba95c562692003af1df29292112726e | /tuc/examples/section.puml | b79620e53445dcffc10ff50aa6b10e1e168b7286 | [] | no_license | TypedUseCase/TypedUseCase.github.io | c92c05c71004d97ba4af505b9ab4b44691440fe2 | 753e523d560053460e464f0351049ffd1e8e94ef | refs/heads/master | 2023-05-16T03:43:52.360390 | 2021-06-08T14:21:38 | 2021-06-08T14:21:38 | 301,753,387 | 0 | 0 | null | 2021-06-08T14:21:39 | 2020-10-06T14:24:27 | F# | UTF-8 | PlantUML | false | false | 164 | puml | @startuml section
== Section ==
actor "Main Service" as MainService <<My>>
activate MainService
== There is just a section ==
deactivate MainService
@enduml
| false | true | false | false | sequence |
7f616de092f667f8d5385c25539df104b845c3dd | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Accessors/EntityFramework/OrderLine.puml | 6d0c726fee4b275b800b19a5ede26ca4389a4513 | [
"BSD-3-Clause"
] | permissive | noelmartens/TransitionAcademy | 4e02379d234aa4859a497ee2846420f4c55b9e12 | 3b95a5c737ab7b1497b77d455cf64caa73f69e1f | refs/heads/master | 2023-06-14T05:25:35.514249 | 2021-07-02T19:40:29 | 2021-07-02T19:40:29 | 362,512,351 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 436 | puml | @startuml
class OrderLine {
+ Id : int <<get>> <<set>>
+ OrderId : int <<get>> <<set>>
+ FromCartItemId : int <<get>> <<set>>
+ ProductId : int <<get>> <<set>>
+ ProductName : string <<get>> <<set>>
+ Quantity : int <<get>> <<set>>
+ UnitPrice : decimal <<get>> <<set>>
+ ExtendedPrice : decimal <<get>> <<set>>
}
OrderLine o-> "CreatedAt" DateTimeOffset
OrderLine o-> "UpdatedAt" DateTimeOffset
@enduml
| false | true | false | false | class |
b723599d69772f9dfb3f3d1ca4a676955800132c | b51928412aa0ae6f79e806d7abec71f23e92bbf8 | /vendingMachineCD1.puml | 19215da8dc0c88d24aa1b0063be6ba7ddd73dada | [] | no_license | chaidanSnru/Python.VendingMachine.OOP | 547f7c684db0216702091233e716b32b016e392f | 02836cadab600f1eb0cf6fed2410f8ddbeaebb43 | refs/heads/master | 2023-01-13T01:06:46.627747 | 2020-11-20T08:37:53 | 2020-11-20T08:37:53 | 314,493,893 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,271 | puml | @startuml class diagram
class Vendingmachine {
-__drinkmanager
-__moneymanager
- void __init__(self, drinkmanager, moneymanager)
+ void vendingmachineStart()
}
Class MoneyManager {
-__changemoney
-__customermoney
- void __init__(self, moneyjson)
-__changemoney get__changemoney(self)
+void set__changemoney(self, x)
+__customermoney get__customermoney(self)
+void set__customermoney(self, y)
+void recordMoney(self, jsonmoneydata)
+string payChangeMoney(self, changemoney)
}
Class DrinkManager {
-__drinkdata : drink [1..*]
-void __init__(self, drinkjson)
+void add__drinkdata(self, drink)
+__drinkdata get__drinkdata(self)
+availabledrink getavailable__drinkdata(self)
+void recordDrink(self, jsondrinkdata)
+string spenceDrink(self, drinkname)
}
Class Drink {
-__name
-__price
-__quantity
-void __init__(self, name, price, quantity)
+__name get__name(self)
+void set__name(self, x)
+__price get__price(self)
+void set__price(self, y)
+__quantity get__quantity(self)
+void set__quantity(self, z)
}
Vendingmachine "1" *-- "1" DrinkManager : have >
Vendingmachine "1" *-- "1" MoneyManager : have >
DrinkManager "1" *-- "manay" Drink :have >
@enduml | false | true | false | false | class |
f33db5cc93288ac846e6488afaa2c01b09141c34 | f82e39b7ba1de2512a1faedc6f6bbd6bfc00b242 | /docs/plantuml/Internal.plantuml | 7cc53b1323bd0b1f1b6dc446eab131fd2e0dfdfb | [] | no_license | mumov/fintech-coding-challenge | cb7a6e5e015548057b214e65c90b2be39d51cdc2 | 729eeb54b829d5481f7ef616c27cf1d30aadabaa | refs/heads/main | 2023-03-11T18:40:14.296790 | 2021-03-04T08:34:28 | 2021-03-04T08:34:28 | 344,390,831 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 150 | plantuml | @startuml
node "Internal" {
[StreamBroker] --> [InstrumentStore]
[StreamBroker] --> [CandleStickStore]
[StreamBroker] <-- [CandleStickStore]
}
@enduml | false | true | false | false | deployment |
62a45e65b16f45a4bd06d57147d6868f2fa03f26 | 3a921698c957b715e77ffeb35fe4c98868849dd8 | /docs/diagrams/actor-system.puml | aee4e3eb8e37cb8dd095e144ae418518bde2e50d | [] | no_license | DHBW-VS-WI17B/assignment-abe1-b1 | 75702feee9b3b437c4929e483f398ec62ee120c0 | 2b6be700fbddc34d6db8bb2a215602e4766a69b2 | refs/heads/master | 2022-12-05T02:22:46.524936 | 2020-08-30T15:12:15 | 2020-08-30T15:12:15 | 280,748,738 | 0 | 0 | null | 2020-08-29T23:01:44 | 2020-07-18T22:16:37 | Python | UTF-8 | PlantUML | false | false | 395 | puml | @startuml
scale 0.7
left to right direction
agent "Customers\n State" as CustomersState
agent "Events\n State" as EventsState
agent "Tickets\n State" as TicketsState
usecase "Customers\n Actor" as CustomersActor
usecase "Events\n Actor" as EventsActor
usecase "Tickets\n Actor" as TicketsActor
CustomersState -- CustomersActor
EventsState -- EventsActor
TicketsState -- TicketsActor
@enduml | false | true | false | false | usecase |
1113289c269cebb2d24724a89bb61b1eea9e150e | 06ee138efbcfd1ed9cda85034467eddfbf10c9dc | /technical/workspace/seq-user-publish-resource.puml | 9f5bedcb880a6ff0a5ff71143efe2a4d2d725d26 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | EOEPCA/eoepca | 9e75f1fda12d6f365b02cb669a78c17ad60a635d | 591b6a050033d1da997dd9c6cb1063b7a643da38 | refs/heads/develop | 2023-08-31T21:30:22.604024 | 2023-08-31T10:18:40 | 2023-08-31T10:18:40 | 228,182,621 | 8 | 11 | Apache-2.0 | 2023-07-06T18:38:15 | 2019-12-15T12:44:36 | HTML | UTF-8 | PlantUML | false | false | 676 | puml | @startuml
title User Publish Resource
participant "User\nClient" as client order 10
participant "Resource\nCatalogue\n(User)" as cat order 20
participant "Workspace\n(Global)" as wsGlobal order 30
participant "Data\nAccess\n(Global)" as dasGlobal order 40
participant "Resource\nCatalogue\n(Global)" as catGlobal order 50
autonumber
client -> cat : Discover Resource
client <-- cat : resource-metadata
group Data Resource
client -> wsGlobal : Register Data
wsGlobal -> dasGlobal : Register Data
wsGlobal -> catGlobal : Register Data
end
group Application Package Resource
client -> wsGlobal : Register Application
wsGlobal -> catGlobal : Register Application
end
@enduml
| false | true | false | false | sequence |
e1005f99ccba4589225183921bc7e3e3ef17245f | 4a6a389449fa439db1565a83b4a392f72d3cc9f6 | /doc/Sequence(Pause).plantuml | 2d6fac3911b034f6b26293a09f4cb8878aa45c2a | [] | no_license | zabila/ConsoleBattleship | 5c5ac453bc8810a9ec11ee3a4916b0494772d8f7 | b4cc06e3e3890a825a5febee82b0d5a53b199ef3 | refs/heads/master | 2023-06-23T18:30:36.264498 | 2017-06-22T18:30:03 | 2017-06-22T18:30:03 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 121 | plantuml | @startuml
scale max 1024*768
LifeCycle -> GameState : pause()
GameState --> LifeCycle : pauseTime;
@enduml
| false | true | false | false | sequence |
4cc1c9741fe9b4ad9a70345925ccdcd47c36e0f1 | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test/java/org/concordion/testsuite/beforeIndex/beforeIndex.plantuml | b8c1f0b5f32e9148baaa3d2ff146ad2d5219b699 | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 656 | plantuml | @startuml
title __BEFOREINDEX's Class Diagram__\n
package org.concordion.testsuite.beforeIndex {
class BeforeIndex {
}
}
package org.concordion.testsuite.beforeIndex {
class BeforeSpec {
{static} + beforeClassMethodCalled : boolean
+ beforeMethodCalled : boolean
{static} + beforeClass()
+ beforeMethod()
+ wasBeforeMethodCalled()
{static} + wasBeforeClassMethodCalled()
}
}
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 |
ff95fbb6c4e952347d12013140068c3805608398 | 8c0ade65aa3a31ed1e742f12f0e1183f2dc7d7c9 | /devel/java/spring_cloud_tut/zipkin-mq.plantuml | ce469979dc50d48bf0fb8c421988e80f740613be | [] | no_license | Jamsa/jamsa.github.io | a17e5fd2dd3a0628571dc10faca4cfbb5118c242 | 71241237dc44c109889866d218125e724583b7a0 | refs/heads/master | 2021-01-01T05:12:43.628149 | 2020-11-16T05:38:43 | 2020-11-16T05:38:43 | 57,016,654 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 201 | plantuml | @startuml
node Zipkin
queue RabbitMQ
node Gateway
node ConsumerService
node ProviderService
Gateway --> RabbitMQ
ConsumerService --> RabbitMQ
ProviderService --> RabbitMQ
RabbitMQ --> Zipkin
@enduml
| false | true | false | false | deployment |
246369d44a9f948659242696e6e2e1632ee79cbb | e5bce87eb192fa7b480db9f147b047b306e7d986 | /assets/scenario.puml | b998ba3a9778551f7bba3f90fdd0313ae666b393 | [] | no_license | hrouis/prez-microservices-hystrix | aeee87d682b3fbfe9689e7182558036de696470b | 8e95bdf7e9d10dd4655b5eea67b63601c3e1225a | refs/heads/master | 2020-04-10T19:18:50.540319 | 2018-12-13T08:46:56 | 2018-12-13T08:46:56 | 161,231,170 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 172 | puml | @startuml
Browser -> Reading: HTTP GET /to-read
Reading --> BookStore: HTTP GET /recommended via HystrixCommand.
BookStore -> Reading: Réponse : Liste des livres.
@enduml | false | true | true | false | sequence |
0bb958f6e7504cc5b20e0867d593ed392e2b1f30 | 51eaf1430762e6df7966555761212ecc510078a9 | /solutions/Sandbox/classes_gen/Self/SelfView.puml | 70d169cbcaa102d268821cd040b44c430e7b807f | [] | no_license | CampagneLaboratory/UML_Diagrams | 1912f7f857e5951c2164e4fa7469d50de919af8d | ef1eb91c9de27b5846b7777e67a9c01015f5e119 | refs/heads/master | 2020-03-30T05:44:32.868157 | 2014-09-14T18:45:56 | 2014-09-14T18:45:56 | 23,975,794 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 396 | puml | @startuml
package org.campagnelab.diagrams {
class LanguageView {
}
hide empty members
LanguageView *-- "0..n" Language : languages
LanguageView *-- "0..1" HiddenConcepts : hiddenConcepts
class ConceptReference {
}
hide empty members
ConceptReference o-- "1"AbstractConceptDeclaration : concept
class Language {
}
hide empty members
Language *-- "0..n" ConceptReference : concepts
}
@enduml
| false | true | false | false | class |
42a5c840253791a6036df5de5b2069f2d2afb36b | 7573f3023e4a2e78d64984a61442784596ff1b71 | /assets/architecture.puml | 43276e94d1afe3ad4f0639b76557e2e2b2b40e95 | [] | no_license | haved/Gazelle | 24081c800ad6534efc8ae7e67863fededbea7903 | 4b29dcfc896c89e1ab59468cccde3b88d664ec0d | refs/heads/master | 2023-02-03T05:11:54.300869 | 2020-11-20T17:24:52 | 2020-11-20T17:24:52 | 301,203,327 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 978 | puml | @startuml
component common {
package gazelle.model
package gazelle.api
}
component jakarta.persistence {
}
common ..> jakarta.persistence
component jackson {
}
common ..> jackson
component gazelleFX{
package gazelle.ui
package gazelle.client
}
component gazelle{
package components
package router
package store
package views
package client
}
component vue{
}
component axios{
}
gazelle --> vue
client --> axios
server -[hidden]--- gazelle
component jersey{
}
gazelle.ui ..> gazelle.api
gazelle.client ..> gazelle.api
gazelle.client ..> jersey
component javafx {
component fxml {
}
}
gazelle.ui ..> javafx
component server{
package gazelle.server.endpoint
package gazelle.server.error
package gazelle.server.repository
package gazelle.server.service
}
component spring {
component spring.boot{
}
}
component h2database {
}
spring ..> h2database
server ..> gazelle.api
server ..> gazelle.model
server ...> spring
@enduml
| false | true | false | false | class |
03369a5f5b8962daeb37b3134021b2f2e5765801 | ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb | /projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/features/Table.puml | fa8eb980b52cbdaf4e43d47c17e35b429c3e13fc | [] | no_license | itachi1706/How-to-use-Git-NTUSCSE1819-Site | d6fcba79d906e9916c3961b11a6e1318d8a0f602 | dbce2f56b42e15be96bd40fd63e75389d397ca34 | refs/heads/master | 2021-07-12T15:24:44.197085 | 2020-08-01T12:31:23 | 2020-08-01T12:31:23 | 172,893,030 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 904 | puml | @startuml
class Table [[../sg/edu/ntu/scse/cz2002/features/Table.html]] {
-tableNum: int
-isReserved: boolean
-state: Table.TableState
-numSeats: Table.TableSeats
+Table(num:int, res:boolean, seats:int, state:int)
+Table(csv:String[])
+toCsv(): String[]
+setTableNum(tableNum:int): void
+getTableNum(): int
+setNumSeats(numSeats:Table.TableSeats): void
+getNumSeats(): Table.TableSeats
+getNumSeatsInt(): int
+setState(state:Table.TableState): void
+getState(): Table.TableState
+setReserved(reserved:boolean): void
+checkReserved(): boolean
{static} +getTableByNumber(tableNum:int): Table
{static} +getVacantTablesByNumPax(numPax:int, bookedTables:ArrayList<Table>): ArrayList<Table>
}
center footer UMLDoclet 1.1.3, PlantUML 1.2018.12
@enduml
| false | true | false | false | class |
4581b2094e5f7fc0d5ced0d934086886dcc122b6 | 853d8c0c34bfd1c4080873b5c5f421d01d107b9b | /Analysis_Design/ClassDiagrams/FireFunction.puml | ed431afce91bf23fe98ff8f5930bf55c5793e4cf | [] | no_license | mesa123123/battleshipsite | f5e5034ac02280de339a13a19540534a07d6526f | 2a74e1f89b86559337e1665148f7dbf9dc00da7b | refs/heads/master | 2020-03-22T00:11:49.859228 | 2018-07-11T08:23:59 | 2018-07-11T08:23:59 | 139,229,918 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 559 | puml | @startuml
skinparam packageStyle rectangle
package "Battlefield"{
class Grid {
+attackSetting
+grid
+makeGrid()
+changeAttackSetting()
}
}
class "AttackScripts"{
+processShot(shotArray, grid)
+createShotArray(Selection, Grid)
}
package "UserCommands" {
class Selection {
+xValue
+yValue
+Constructor()
}
}
package "View" {
class Table {
+ConvertRows()
+ConvertData()
}
}
Grid <-> AttackScripts
Grid --> AttackScripts
Selection --> AttackScripts
Table <-> Grid
Table --> Selection
@enduml
| false | true | false | false | class |
b897e85a2109185917e4157ccca3628c7a764b92 | 5336f97e3eb81d4ad9b2939726bfde17ae682ea7 | /html/html.plantuml | 02cbc7bb32d8cc9b4452e68bdbfb93bfcb5803ca | [] | no_license | kkersis/traffic-simulation-java | 106bc38a9b50a59a77bc5793604314330ebd8aa7 | f0088ea4143f9fa9dcb9b7c710f2e841d9760cc9 | refs/heads/master | 2022-09-13T07:54:04.482623 | 2020-05-28T06:08:33 | 2020-05-28T06:08:33 | 254,651,572 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 430 | plantuml | @startuml
title __HTML's Class Diagram__\n
namespace com.mygdx.game.client {
class com.mygdx.game.client.HtmlLauncher {
}
}
com.mygdx.game.client.HtmlLauncher -up-|> com.badlogic.gdx.backends.gwt.GwtApplication
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 |
0121ea2f2cc4f059937e29bdc54aa662c943dd41 | 89634bb006a9df141b85b9d653ed3f9036cebe42 | /src/Docs/Resources/deprecated/2-internals/1-core/10-erd/_puml/erd-all.puml | 5116af92133faa7181f115c4f4e87eacd2ad9bdb | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | 8mylez/platform | a3290e4e2294dd9d21def95a90c28951084c3a93 | 14c3bc69c720e82f0d5e4ffc70af5ded2e13efc9 | refs/heads/master | 2021-01-13T23:30:54.500566 | 2020-09-18T07:06:25 | 2020-09-18T07:06:25 | 296,546,535 | 1 | 1 | MIT | 2020-09-18T07:27:12 | 2020-09-18T07:27:11 | null | UTF-8 | PlantUML | false | false | 98,147 | 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(ShopwareCoreFrameworkLoggingLogEntryDefinition, "log_entry\n(__EMPTY__)") {
primary_key(id) id
message string
level int
channel string
context json
extra json
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkAclResourceAclResourceDefinition, "acl_resource\n(__EMPTY__)") {
primary_key(resource) string
primary_key(privilege) string
primary_key(aclRoleId) foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkAclRoleAclRoleDefinition, "acl_role\n(__EMPTY__)") {
primary_key(id) id
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
not_null(name) string
}
Table(ShopwareCoreFrameworkAclRoleAclUserRoleDefinition, "acl_user_role\n(M:N Mapping)") {
primary_key(userId) foreignKey
primary_key(aclRoleId) foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkCustomFieldCustomFieldDefinition, "custom_field\n(CustomField configuration)") {
primary_key(id) id
not_null(name) string
not_null(type) string
config json
active bool
customFieldSetId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkCustomFieldAggregateCustomFieldSetCustomFieldSetDefinition, "custom_field_set\n(CustomField set/group)") {
primary_key(id) id
not_null(name) string
config json
active bool
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkCustomFieldAggregateCustomFieldSetRelationCustomFieldSetRelationDefinition, "custom_field_set_relation\n(Set to entity relation)") {
primary_key(id) id
not_null(customFieldSetId) foreignKey
not_null(entityName) string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkEventEventActionEventActionDefinition, "event_action\n(Configurable event handling)") {
primary_key(id) id
not_null(eventName) string
not_null(actionName) string
config json
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkMessageQueueDeadMessageDeadMessageDefinition, "dead_message\n(Failing messages)") {
primary_key(id) id
not_null(originalMessageClass) longText
not_null(serializedOriginalMessage) blob
not_null(handlerClass) longText
not_null(encrypted) bool
not_null(errorCount) int
not_null(nextExecutionTime) dateTime
not_null(exception) longText
not_null(exceptionMessage) longText
not_null(exceptionFile) longText
not_null(exceptionLine) int
scheduledTaskId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkMessageQueueMessageQueueStatsDefinition, "message_queue_stats\n(Stats)") {
primary_key(id) id
not_null(name) string
not_null(size) int
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkPluginPluginDefinition, "plugin\n(Plugin)") {
primary_key(id) id
not_null(baseClass) string
not_null(name) string
composerName string
not_null(autoload) json
active bool
managedByComposer bool
path string
author string
copyright string
license string
not_null(version) string
upgradeVersion string
installedAt dateTime
upgradedAt dateTime
iconRaw blob
icon string
label translated
description translated
manufacturerLink translated
supportLink translated
changelog translated
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreFrameworkPluginAggregatePluginTranslationPluginTranslationDefinition, "plugin_translation\n((Translations))") {
not_null(label) string
description longText
manufacturerLink string
supportLink string
changelog json
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(pluginId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreFrameworkScheduledTaskScheduledTaskDefinition, "scheduled_task\n(Cron job)") {
primary_key(id) id
not_null(name) string
not_null(scheduledTaskClass) string
not_null(runInterval) int
not_null(status) string
lastExecutionTime dateTime
not_null(nextExecutionTime) dateTime
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkLanguageLanguageDefinition, "language\n(Language)") {
primary_key(id) id
parentId parentFk
not_null(localeId) foreignKey
translationCodeId foreignKey
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkSeoSeoUrlSeoUrlDefinition, "seo_url\n(__EMPTY__)") {
primary_key(id) id
salesChannelId foreignKey
not_null(languageId) foreignKey
not_null(foreignKey) id
not_null(routeName) string
not_null(pathInfo) string
not_null(seoPathInfo) string
isCanonical bool
isModified bool
isDeleted bool
url string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkSeoSeoUrlTemplateSeoUrlTemplateDefinition, "seo_url_template\n(__EMPTY__)") {
primary_key(id) id
salesChannelId foreignKey
not_null(entityName) string
not_null(routeName) string
not_null(template) string
isValid bool
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkSeoMainCategoryMainCategoryDefinition, "main_category\n(__EMPTY__)") {
primary_key(id) id
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
not_null(categoryId) foreignKey
not_null(categoryVersionId) referenceVersion
not_null(salesChannelId) foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
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
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
}
Table(ShopwareCoreSystemCountryCountryDefinition, "country\n(Country)") {
primary_key(id) id
name translated
iso string
position int
taxFree bool
active bool
shippingAvailable bool
iso3 string
displayStateInRegistration bool
forceStateInRegistration bool
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition, "country_state\n(A countries state)") {
primary_key(id) id
not_null(countryId) foreignKey
not_null(shortCode) string
name translated
position int
active bool
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemCountryAggregateCountryStateTranslationCountryStateTranslationDefinition, "country_state_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(countryStateId) foreignKey
primary_key(languageId) foreignKey
}
TranslationTable(ShopwareCoreSystemCountryAggregateCountryTranslationCountryTranslationDefinition, "country_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(countryId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemCurrencyCurrencyDefinition, "currency\n(Currency)") {
primary_key(id) id
not_null(factor) float
not_null(symbol) string
not_null(isoCode) string
shortName translated
name translated
not_null(decimalPrecision) int
position int
isSystemDefault bool
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemCurrencyAggregateCurrencyTranslationCurrencyTranslationDefinition, "currency_translation\n((Translations))") {
not_null(shortName) string
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(currencyId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemLocaleLocaleDefinition, "locale\n(A locale)") {
primary_key(id) id
not_null(code) string
name translated
territory translated
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemLocaleAggregateLocaleTranslationLocaleTranslationDefinition, "locale_translation\n((Translations))") {
not_null(name) string
not_null(territory) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(localeId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreFrameworkSnippetAggregateSnippetSetSnippetSetDefinition, "snippet_set\n(Sets of snippets)") {
primary_key(id) id
not_null(name) string
not_null(baseFile) string
not_null(iso) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreFrameworkSnippetSnippetDefinition, "snippet\n(Translation Strings)") {
primary_key(id) id
not_null(setId) foreignKey
not_null(translationKey) string
not_null(value) longTextWithHtml
not_null(author) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemSalutationSalutationDefinition, "salutation\n(Salutation configuration)") {
primary_key(id) id
not_null(salutationKey) string
displayName translated
letterName translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemSalutationAggregateSalutationTranslationSalutationTranslationDefinition, "salutation_translation\n((Translations))") {
not_null(displayName) string
not_null(letterName) string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(salutationId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemTaxTaxDefinition, "tax\n(Available tax settings)") {
primary_key(id) id
not_null(taxRate) float
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemUnitUnitDefinition, "unit\n(Measuring unit)") {
primary_key(id) id
shortCode translated
name translated
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemUnitAggregateUnitTranslationUnitTranslationDefinition, "unit_translation\n((Translations))") {
not_null(shortCode) string
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(unitId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemUserUserDefinition, "user\n(Administration/ Management Account user)") {
primary_key(id) id
not_null(localeId) foreignKey
avatarId foreignKey
not_null(username) string
not_null(password) password
not_null(firstName) string
not_null(lastName) string
not_null(email) string
active bool
admin bool
customFields customFields
storeToken string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemUserAggregateUserAccessKeyUserAccessKeyDefinition, "user_access_key\n(oAuth access key)") {
primary_key(id) id
not_null(userId) foreignKey
not_null(accessKey) string
not_null(secretAccessKey) password
writeAccess bool
lastUsageAt dateTime
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemUserAggregateUserRecoveryUserRecoveryDefinition, "user_recovery\n(User / Account recovery process)") {
primary_key(id) id
not_null(hash) string
not_null(userId) foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemIntegrationIntegrationDefinition, "integration\n(O-Auth integration)") {
primary_key(id) id
not_null(label) string
not_null(accessKey) string
not_null(secretAccessKey) password
writeAccess bool
lastUsageAt dateTime
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemStateMachineStateMachineDefinition, "state_machine\n(State machine)") {
primary_key(id) id
not_null(technicalName) string
name translated
customFields translated
initialStateId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemStateMachineStateMachineTranslationDefinition, "state_machine_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(stateMachineId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition, "state_machine_state\n(State)") {
primary_key(id) id
not_null(technicalName) string
name translated
not_null(stateMachineId) foreignKey
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateTranslationDefinition, "state_machine_state_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(stateMachineStateId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemStateMachineAggregationStateMachineTransitionStateMachineTransitionDefinition, "state_machine_transition\n(State transition)") {
primary_key(id) id
not_null(actionName) string
not_null(stateMachineId) foreignKey
not_null(fromStateId) foreignKey
not_null(toStateId) foreignKey
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemStateMachineAggregationStateMachineHistoryStateMachineHistoryDefinition, "state_machine_history\n(State transition history)") {
primary_key(id) id
not_null(stateMachineId) foreignKey
not_null(entityName) string
not_null(entityId) json
not_null(fromStateId) foreignKey
not_null(toStateId) foreignKey
transitionActionName string
userId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemSystemConfigSystemConfigDefinition, "system_config\n(System configuration)") {
primary_key(id) id
not_null(configurationKey) string
not_null(configurationValue) configurationValue
salesChannelId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemNumberRangeNumberRangeDefinition, "number_range\n(Number range)") {
primary_key(id) id
not_null(typeId) foreignKey
not_null(global) bool
name translated
description translated
not_null(pattern) string
not_null(start) int
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreSystemNumberRangeAggregateNumberRangeSalesChannelNumberRangeSalesChannelDefinition, "number_range_sales_channel\n(M:N Mapping)") {
primary_key(id) id
not_null(numberRangeId) foreignKey
not_null(salesChannelId) foreignKey
numberRangeTypeId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemNumberRangeAggregateNumberRangeStateNumberRangeStateDefinition, "number_range_state\n(Current number range max value)") {
primary_key(id) id
not_null(numberRangeId) foreignKey
not_null(lastValue) int
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreSystemNumberRangeAggregateNumberRangeTypeNumberRangeTypeDefinition, "number_range_type\n(Type)") {
primary_key(id) id
technicalName string
typeName translated
not_null(global) bool
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreSystemNumberRangeAggregateNumberRangeTypeTranslationNumberRangeTypeTranslationDefinition, "number_range_type_translation\n((Translations))") {
not_null(typeName) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(numberRangeTypeId) foreignKey
primary_key(languageId) foreignKey
}
TranslationTable(ShopwareCoreSystemNumberRangeAggregateNumberRangeTranslationNumberRangeTranslationDefinition, "number_range_translation\n((Translations))") {
not_null(name) string
description string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(numberRangeId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreSystemTagTagDefinition, "tag\n(Taxonomy)") {
primary_key(id) id
not_null(name) string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentCategoryCategoryDefinition, "category\n(Category tree)") {
primary_key(id) id
primary_key(versionId) version
parentId parentFk
not_null(parentVersionId) referenceVersion
afterCategoryId foreignKey
not_null(afterCategoryVersionId) referenceVersion
mediaId foreignKey
not_null(displayNestedProducts) bool
autoIncrement int
breadcrumb translated
level treeLevel
path treePath
childCount childCount
not_null(type) string
visible bool
active bool
name translated
customFields translated
slotConfig translated
externalLink translated
description translated
cmsPageId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentCategoryAggregateCategoryTranslationCategoryTranslationDefinition, "category_translation\n((Translations))") {
not_null(name) string
breadcrumb list
slotConfig json
externalLink string
description longTextWithHtml
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(categoryId) foreignKey
primary_key(languageId) foreignKey
primary_key(categoryVersionId) referenceVersion
}
Table(ShopwareCoreContentCategoryAggregateCategoryTagCategoryTagDefinition, "category_tag\n(M:N Mapping)") {
primary_key(categoryId) foreignKey
primary_key(categoryVersionId) referenceVersion
primary_key(tagId) foreignKey
}
Table(ShopwareCoreContentMediaMediaDefinition, "media\n(Media / Files)") {
primary_key(id) id
userId foreignKey
mediaFolderId foreignKey
mimeType string
fileExtension string
uploadedAt dateTime
fileName longText
fileSize int
mediaTypeRaw blob
metaData json
mediaType json
alt translated
title translated
url string
hasFile bool
private bool
customFields translated
thumbnailsRo blob
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreContentMediaAggregateMediaDefaultFolderMediaDefaultFolderDefinition, "media_default_folder\n(Default folders)") {
primary_key(id) id
not_null(associationFields) list
not_null(entity) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentMediaAggregateMediaThumbnailMediaThumbnailDefinition, "media_thumbnail\n(Generated Thumbnail)") {
primary_key(id) id
not_null(mediaId) foreignKey
not_null(width) int
not_null(height) int
url string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
TranslationTable(ShopwareCoreContentMediaAggregateMediaTranslationMediaTranslationDefinition, "media_translation\n((Translations))") {
title string
alt longText
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(mediaId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentMediaAggregateMediaFolderMediaFolderDefinition, "media_folder\n(Folder structure)") {
primary_key(id) id
useParentConfiguration bool
not_null(configurationId) foreignKey
defaultFolderId foreignKey
parentId parentFk
childCount childCount
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentMediaAggregateMediaThumbnailSizeMediaThumbnailSizeDefinition, "media_thumbnail_size\n(Generated Thumbnails)") {
primary_key(id) id
not_null(width) int
not_null(height) int
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentMediaAggregateMediaFolderConfigurationMediaFolderConfigurationDefinition, "media_folder_configuration\n(Configuration)") {
primary_key(id) id
createThumbnails bool
keepAspectRatio bool
thumbnailQuality int
private bool
noAssociation bool
mediaThumbnailSizesRo blob
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentMediaAggregateMediaFolderConfigurationMediaThumbnailSizeMediaFolderConfigurationMediaThumbnailSizeDefinition, "media_folder_configuration_media_thumbnail_size\n(M:N Mapping)") {
primary_key(mediaFolderConfigurationId) foreignKey
primary_key(mediaThumbnailSizeId) foreignKey
}
Table(ShopwareCoreContentMediaAggregateMediaTagMediaTagDefinition, "media_tag\n(M:N Mapping)") {
primary_key(mediaId) foreignKey
primary_key(tagId) foreignKey
}
Table(ShopwareCoreContentProductProductDefinition, "product\n(Product)") {
primary_key(id) id
primary_key(versionId) version
parentId parentFk
not_null(parentVersionId) referenceVersion
childCount childCount
blacklistIds blacklistRule
whitelistIds whitelistRule
autoIncrement int
active bool
not_null(stock) int
availableStock int
available bool
variantRestrictions json
displayGroup string
configuratorGroupConfig json
manufacturerId foreignKey
not_null(productManufacturerVersionId) referenceVersion
unitId foreignKey
not_null(taxId) foreignKey
coverId foreignKey
productMediaVersionId referenceVersion
not_null(price) price
manufacturerNumber string
ean string
not_null(productNumber) numberRange
isCloseout bool
purchaseSteps int
maxPurchase int
minPurchase int
purchaseUnit float
referenceUnit float
shippingFree bool
purchasePrice float
markAsTopseller bool
weight float
width float
height float
length float
releaseDate dateTime
categoryTree list
propertyIds manyToManyId
optionIds manyToManyId
tagIds manyToManyId
listingPrices priceRulesJson
ratingAverage float
deliveryTimeId foreignKey
restockTime int
additionalText translated
name translated
keywords translated
description translated
metaTitle translated
packUnit translated
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
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(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
not_null(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
not_null(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
primary_key(languageId) foreignKey
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
not_null(keyword) string
not_null(ranking) float
not_null(createdAt) createdAt
not_null(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(__EMPTY__)") {
primary_key(id) id
not_null(productId) foreignKey
not_null(productVersionId) referenceVersion
not_null(customerId) foreignKey
not_null(salesChannelId) foreignKey
not_null(languageId) foreignKey
externalUser string
externalEmail string
not_null(title) string
not_null(content) longTextWithHtml
points float
status bool
comment longText
not_null(updatedAt) updatedAt
not_null(createdAt) createdAt
}
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
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentProductAggregateProductManufacturerTranslationProductManufacturerTranslationDefinition, "product_manufacturer_translation\n((Translations))") {
not_null(name) string
description longTextWithHtml
customFields customFields
not_null(createdAt) createdAt
not_null(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
not_null(updatedAt) updatedAt
}
TranslationTable(ShopwareCoreContentProductAggregateProductTranslationProductTranslationDefinition, "product_translation\n((Translations))") {
additionalText string
not_null(name) string
keywords longText
description longTextWithHtml
metaTitle string
packUnit string
customFields customFields
not_null(createdAt) createdAt
not_null(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(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
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentDeliveryTimeDeliveryTimeDefinition, "delivery_time\n(Delivery time)") {
primary_key(id) id
not_null(name) translated
not_null(min) int
not_null(max) int
not_null(unit) string
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreContentNewsletterAggregateNewsletterRecipientNewsletterRecipientDefinition, "newsletter_recipient\n(Newsletter recipient)") {
primary_key(id) id
not_null(email) string
title string
firstName string
lastName string
zipCode string
city string
street string
not_null(status) string
not_null(hash) string
customFields customFields
confirmedAt dateTime
salutationId foreignKey
not_null(languageId) foreignKey
not_null(salesChannelId) foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentNewsletterAggregateNewsletterRecipientTagNewsletterRecipientTagDefinition, "newsletter_recipient_tag\n(M:N Mapping)") {
primary_key(newsletterRecipientId) foreignKey
primary_key(tagId) foreignKey
}
Table(ShopwareCoreContentRuleRuleDefinition, "rule\n(Rule)") {
primary_key(id) id
not_null(name) string
not_null(priority) int
description longText
payload blob
invalid bool
customFields customFields
moduleTypes json
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentRuleAggregateRuleConditionRuleConditionDefinition, "rule_condition\n(Rule condition)") {
primary_key(id) id
type string
not_null(ruleId) foreignKey
parentId parentFk
value json
position int
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentProductStreamProductStreamDefinition, "product_stream\n(Product streams)") {
primary_key(id) id
apiFilter json
invalid bool
name translated
description translated
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentProductStreamAggregateProductStreamTranslationProductStreamTranslationDefinition, "product_stream_translation\n((Translations))") {
not_null(name) string
description longText
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(productStreamId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentProductStreamAggregateProductStreamFilterProductStreamFilterDefinition, "product_stream_filter\n(A Product stream filter term)") {
primary_key(id) id
not_null(productStreamId) foreignKey
parentId parentFk
not_null(type) string
field string
operator string
value longText
parameters json
position int
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentPropertyPropertyGroupDefinition, "property_group\n(Property Group)") {
primary_key(id) id
name translated
description translated
not_null(displayType) string
not_null(sortingType) string
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition, "property_group_option\n(Property option)") {
primary_key(id) id
not_null(groupId) foreignKey
name translated
position translated
colorHexCode string
mediaId foreignKey
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentPropertyAggregatePropertyGroupOptionTranslationPropertyGroupOptionTranslationDefinition, "property_group_option_translation\n((Translations))") {
not_null(name) string
position int
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(propertyGroupOptionId) foreignKey
primary_key(languageId) foreignKey
}
TranslationTable(ShopwareCoreContentPropertyAggregatePropertyGroupTranslationPropertyGroupTranslationDefinition, "property_group_translation\n((Translations))") {
not_null(name) string
description longText
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(propertyGroupId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentCmsCmsPageDefinition, "cms_page\n(Content Page)") {
primary_key(id) id
name translated
not_null(type) string
entity string
config json
previewMediaId foreignKey
customFields translated
locked writeLockIndicator
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentCmsAggregateCmsPageTranslationCmsPageTranslationDefinition, "cms_page_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(cmsPageId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentCmsAggregateCmsSectionCmsSectionDefinition, "cms_section\n(__EMPTY__)") {
primary_key(id) id
not_null(position) int
not_null(type) string
locked writeLockIndicator
name string
sizingMode string
mobileBehavior string
backgroundColor string
backgroundMediaId foreignKey
backgroundMediaMode string
cssClass string
not_null(pageId) foreignKey
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentCmsAggregateCmsBlockCmsBlockDefinition, "cms_block\n(Content Block)") {
primary_key(id) id
not_null(position) int
not_null(type) string
locked writeLockIndicator
name string
sectionPosition string
marginTop string
marginBottom string
marginLeft string
marginRight string
backgroundColor string
backgroundMediaId foreignKey
backgroundMediaMode string
cssClass string
not_null(sectionId) foreignKey
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentCmsAggregateCmsSlotCmsSlotDefinition, "cms_slot\n(Content Slot)") {
primary_key(id) id
primary_key(versionId) version
not_null(type) string
not_null(slot) string
locked writeLockIndicator
config translated
customFields translated
data json
not_null(blockId) foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentCmsAggregateCmsSlotTranslationCmsSlotTranslationDefinition, "cms_slot_translation\n((Translations))") {
not_null(config) configurationValue
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(cmsSlotId) foreignKey
primary_key(languageId) foreignKey
primary_key(cmsSlotVersionId) referenceVersion
}
Table(ShopwareCoreContentMailTemplateMailTemplateDefinition, "mail_template\n(Mail Template)") {
primary_key(id) id
not_null(mailTemplateTypeId) foreignKey
systemDefault bool
senderName translated
description translated
subject translated
contentHtml translated
contentPlain translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentMailTemplateAggregateMailTemplateTranslationMailTemplateTranslationDefinition, "mail_template_translation\n((Translations))") {
senderName string
description longText
not_null(subject) string
not_null(contentHtml) longTextWithHtml
not_null(contentPlain) longText
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(mailTemplateId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentMailTemplateAggregateMailTemplateTypeMailTemplateTypeDefinition, "mail_template_type\n(Type)") {
primary_key(id) id
name translated
not_null(technicalName) string
availableEntities json
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
customFields translated
translated json
}
TranslationTable(ShopwareCoreContentMailTemplateAggregateMailTemplateTypeTranslationMailTemplateTypeTranslationDefinition, "mail_template_type_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(mailTemplateTypeId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentMailTemplateAggregateMailTemplateSalesChannelMailTemplateSalesChannelDefinition, "mail_template_sales_channel\n(M:N Mapping)") {
primary_key(id) id
not_null(mailTemplateId) foreignKey
not_null(salesChannelId) foreignKey
mailTemplateTypeId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentMailTemplateAggregateMailTemplateMediaMailTemplateMediaDefinition, "mail_template_media\n(M:N Mapping)") {
primary_key(id) id
not_null(mailTemplateId) foreignKey
not_null(mediaId) foreignKey
position int
}
Table(ShopwareCoreContentMailTemplateAggregateMailHeaderFooterMailHeaderFooterDefinition, "mail_header_footer\n(Header/Footer content)") {
primary_key(id) id
systemDefault bool
name translated
description translated
headerHtml translated
headerPlain translated
footerHtml translated
footerPlain translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentMailTemplateAggregateMailHeaderFooterTranslationMailHeaderFooterTranslationDefinition, "mail_header_footer_translation\n((Translations))") {
not_null(name) string
description string
headerHtml longTextWithHtml
headerPlain longText
footerHtml longTextWithHtml
footerPlain longText
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(mailHeaderFooterId) foreignKey
primary_key(languageId) foreignKey
}
TranslationTable(ShopwareCoreContentDeliveryTimeAggregateDeliveryTimeTranslationDeliveryTimeTranslationDefinition, "delivery_time_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(deliveryTimeId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreContentImportExportImportExportProfileDefinition, "import_export_profile\n(File profile definition)") {
primary_key(id) id
not_null(name) string
systemDefault bool
not_null(sourceEntity) string
not_null(fileType) string
delimiter string
enclosure string
mapping json
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition, "import_export_log\n(Change log)") {
primary_key(id) id
not_null(activity) string
not_null(state) string
not_null(records) int
userId foreignKey
profileId foreignKey
fileId foreignKey
username string
profileName string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreContentImportExportAggregateImportExportFileImportExportFileDefinition, "import_export_file\n(Import/Export file)") {
primary_key(id) id
not_null(originalName) string
not_null(path) string
not_null(expireDate) dateTime
size int
not_null(createdAt) createdAt
not_null(accessToken) string
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer\n(The sales channel customer)") {
primary_key(id) id
not_null(groupId) foreignKey
not_null(defaultPaymentMethodId) foreignKey
not_null(salesChannelId) foreignKey
not_null(languageId) foreignKey
lastPaymentMethodId foreignKey
not_null(defaultBillingAddressId) foreignKey
not_null(defaultShippingAddressId) foreignKey
autoIncrement int
not_null(customerNumber) numberRange
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
company string
password password
not_null(email) string
title string
active bool
guest bool
firstLogin dateTime
lastLogin dateTime
newsletter bool
birthday date
lastOrderDate dateTime
orderCount int
customFields customFields
legacyPassword string
legacyEncoder string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
TranslationTable(ShopwareCoreCheckoutCustomerAggregateCustomerGroupTranslationCustomerGroupTranslationDefinition, "customer_group_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(customerGroupId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition, "customer_address\n(The customer addresses.)") {
primary_key(id) id
not_null(customerId) foreignKey
not_null(countryId) foreignKey
countryStateId foreignKey
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
not_null(zipcode) string
not_null(city) string
company string
not_null(street) string
department string
title string
vatId string
phoneNumber string
additionalAddressLine1 string
additionalAddressLine2 string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition, "customer_group\n(Customer groups)") {
primary_key(id) id
name translated
displayGross bool
customFields translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerTagCustomerTagDefinition, "customer_tag\n(M:N Mapping)") {
primary_key(customerId) foreignKey
primary_key(tagId) foreignKey
}
Table(ShopwareCoreCheckoutDocumentDocumentDefinition, "document\n(Document)") {
primary_key(id) id
not_null(documentTypeId) foreignKey
not_null(fileType) string
referencedDocumentId foreignKey
not_null(orderId) foreignKey
documentMediaFileId foreignKey
not_null(orderVersionId) referenceVersion
not_null(config) json
sent bool
static bool
not_null(deepLinkCode) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutDocumentAggregateDocumentTypeDocumentTypeDefinition, "document_type\n(Type)") {
primary_key(id) id
name translated
not_null(technicalName) string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
customFields translated
translated json
}
TranslationTable(ShopwareCoreCheckoutDocumentAggregateDocumentTypeTranslationDocumentTypeTranslationDefinition, "document_type_translation\n((Translations))") {
not_null(name) string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(documentTypeId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigDocumentBaseConfigDefinition, "document_base_config\n(Configuration)") {
primary_key(id) id
not_null(documentTypeId) foreignKey
logoId foreignKey
not_null(name) string
filenamePrefix string
filenameSuffix string
not_null(global) bool
documentNumber numberRange
config json
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigSalesChannelDocumentBaseConfigSalesChannelDefinition, "document_base_config_sales_channel\n(SalesChannel Configuration)") {
primary_key(id) id
not_null(documentBaseConfigId) foreignKey
salesChannelId foreignKey
documentTypeId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderOrderDefinition, "order\n(Order root table)") {
primary_key(id) id
primary_key(versionId) version
autoIncrement int
orderNumber numberRange
not_null(billingAddressId) foreignKey
not_null(billingAddressVersionId) referenceVersion
not_null(currencyId) foreignKey
not_null(languageId) foreignKey
not_null(salesChannelId) foreignKey
not_null(orderDateTime) dateTime
orderDate date
price cartPrice
amountTotal float
amountNet float
positionPrice float
taxStatus string
shippingCosts calculatedPrice
shippingTotal float
not_null(currencyFactor) float
deepLinkCode string
not_null(stateId) stateMachineState
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition, "order_address\n(Order address)") {
primary_key(id) id
primary_key(versionId) version
not_null(countryId) foreignKey
countryStateId foreignKey
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
not_null(street) string
not_null(zipcode) string
not_null(city) string
company string
department string
title string
vatId string
phoneNumber string
additionalAddressLine1 string
additionalAddressLine2 string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition, "order_customer\n(Order customer)") {
primary_key(id) id
primary_key(versionId) version
customerId foreignKey
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(email) string
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
company string
title string
customerNumber string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition, "order_delivery\n(Delivery)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(shippingOrderAddressId) foreignKey
not_null(shippingOrderAddressVersionId) referenceVersion
not_null(shippingMethodId) foreignKey
not_null(stateId) foreignKey
trackingCodes json
not_null(shippingDateEarliest) dateTime
not_null(shippingDateLatest) dateTime
shippingCosts calculatedPrice
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition, "order_delivery_position\n(Delivery position)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderDeliveryId) foreignKey
not_null(orderDeliveryVersionId) referenceVersion
not_null(orderLineItemId) foreignKey
not_null(orderLineItemVersionId) referenceVersion
price calculatedPrice
unitPrice float
totalPrice float
quantity int
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition, "order_line_item\n(Order line item)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
parentId parentFk
not_null(parentVersionId) referenceVersion
coverId foreignKey
not_null(identifier) string
referencedId string
not_null(quantity) int
not_null(label) string
payload json
good bool
removable bool
stackable bool
not_null(price) calculatedPrice
priceDefinition priceDefinition
unitPrice float
totalPrice float
description string
type string
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition, "order_tag\n(M:N Mapping)") {
primary_key(orderId) foreignKey
primary_key(orderVersionId) referenceVersion
primary_key(tagId) foreignKey
}
Table(ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition, "order_transaction\n(Order transaction)") {
primary_key(id) id
primary_key(versionId) version
not_null(orderId) foreignKey
not_null(orderVersionId) referenceVersion
not_null(paymentMethodId) foreignKey
not_null(amount) calculatedPrice
not_null(stateId) stateMachineState
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutPaymentPaymentMethodDefinition, "payment_method\n(Payment method)") {
primary_key(id) id
pluginId foreignKey
handlerIdentifier string
name translated
description translated
position int
active bool
customFields translated
availabilityRuleId foreignKey
mediaId foreignKey
formattedHandlerIdentifier string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreCheckoutPaymentAggregatePaymentMethodTranslationPaymentMethodTranslationDefinition, "payment_method_translation\n((Translations))") {
not_null(name) string
description longText
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(paymentMethodId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionPromotionDefinition, "promotion\n(Discounts with settings)") {
primary_key(id) id
name translated
not_null(active) bool
validFrom dateTime
validUntil dateTime
not_null(maxRedemptionsGlobal) int
not_null(maxRedemptionsPerCustomer) int
not_null(exclusive) bool
code string
not_null(useCodes) bool
not_null(useIndividualCodes) bool
individualCodePattern string
not_null(useSetGroups) bool
customerRestriction bool
orderCount int
ordersPerCustomerCount json
exclusionIds list
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition, "promotion_sales_channel\n(Promotion configuration)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(salesChannelId) foreignKey
not_null(priority) int
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionIndividualCodePromotionIndividualCodeDefinition, "promotion_individual_code\n(__EMPTY__)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(code) string
payload json
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition, "promotion_discount\n(Discounts)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(scope) string
not_null(type) string
not_null(value) float
not_null(considerAdvancedRules) bool
maxValue float
sorterKey string
applierKey string
usageKey string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition, "promotion_discount_rule\n(M:N Mapping)") {
primary_key(discountId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupPromotionSetGroupDefinition, "promotion_setgroup\n(__EMPTY__)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(packagerKey) string
not_null(sorterKey) string
not_null(value) float
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupRulePromotionSetGroupRuleDefinition, "promotion_setgroup_rule\n(M:N Mapping)") {
primary_key(setgroupId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition, "promotion_order_rule\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition, "promotion_persona_customer\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(customerId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition, "promotion_persona_rule\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition, "promotion_cart_rule\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(ruleId) foreignKey
}
TranslationTable(ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition, "promotion_translation\n((Translations))") {
not_null(name) string
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(promotionId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPricePromotionDiscountPriceDefinition, "promotion_discount_prices\n(__EMPTY__)") {
primary_key(id) id
not_null(discountId) foreignKey
not_null(currencyId) foreignKey
not_null(price) float
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
Table(ShopwareCoreCheckoutShippingShippingMethodDefinition, "shipping_method\n(Shipping method)") {
primary_key(id) id
name translated
active bool
customFields translated
not_null(availabilityRuleId) foreignKey
mediaId foreignKey
not_null(deliveryTimeId) foreignKey
description translated
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
Table(ShopwareCoreCheckoutShippingAggregateShippingMethodTagShippingMethodTagDefinition, "shipping_method_tag\n(M:N Mapping)") {
primary_key(shippingMethodId) foreignKey
primary_key(tagId) foreignKey
}
Table(ShopwareCoreCheckoutShippingAggregateShippingMethodPriceShippingMethodPriceDefinition, "shipping_method_price\n(Prices of a shipping method)") {
primary_key(id) id
not_null(shippingMethodId) foreignKey
not_null(currencyId) foreignKey
ruleId foreignKey
calculation int
calculationRuleId foreignKey
quantityStart float
quantityEnd float
not_null(price) float
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
}
TranslationTable(ShopwareCoreCheckoutShippingAggregateShippingMethodTranslationShippingMethodTranslationDefinition, "shipping_method_translation\n((Translations))") {
not_null(name) string
description longText
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(shippingMethodId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareStorefrontThemeThemeDefinition, "theme\n(__EMPTY__)") {
primary_key(id) id
technicalName string
not_null(name) string
not_null(author) string
description translated
labels translated
helpTexts translated
customFields translated
previewMediaId foreignKey
parentThemeId foreignKey
baseConfig json
configValues json
not_null(active) bool
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareStorefrontThemeAggregateThemeTranslationDefinition, "theme_translation\n((Translations))") {
description string
labels json
helpTexts json
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(themeId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareStorefrontThemeAggregateThemeSalesChannelDefinition, "theme_sales_channel\n(M:N Mapping)") {
primary_key(salesChannelId) foreignKey
not_null(themeId) foreignKey
}
Table(ShopwareStorefrontThemeAggregateThemeMediaDefinition, "theme_media\n(M:N Mapping)") {
primary_key(themeId) foreignKey
primary_key(mediaId) foreignKey
}
' relationshipd
ShopwareCoreFrameworkAclRoleAclRoleDefinition --> ShopwareCoreFrameworkAclResourceAclResourceDefinition
ShopwareCoreFrameworkAclRoleAclUserRoleDefinition --> ShopwareCoreFrameworkAclRoleAclRoleDefinition
ShopwareCoreSystemUserUserDefinition --> ShopwareCoreFrameworkAclRoleAclUserRoleDefinition
ShopwareCoreFrameworkCustomFieldAggregateCustomFieldSetCustomFieldSetDefinition --> ShopwareCoreFrameworkCustomFieldCustomFieldDefinition
ShopwareCoreFrameworkCustomFieldAggregateCustomFieldSetRelationCustomFieldSetRelationDefinition --> ShopwareCoreFrameworkCustomFieldAggregateCustomFieldSetCustomFieldSetDefinition
ShopwareCoreFrameworkScheduledTaskScheduledTaskDefinition --> ShopwareCoreFrameworkMessageQueueDeadMessageDeadMessageDefinition
ShopwareCoreFrameworkPluginAggregatePluginTranslationPluginTranslationDefinition --> ShopwareCoreFrameworkPluginPluginDefinition
ShopwareCoreCheckoutPaymentPaymentMethodDefinition --> ShopwareCoreFrameworkPluginPluginDefinition
ShopwareCoreFrameworkLanguageLanguageDefinition --> ShopwareCoreFrameworkPluginAggregatePluginTranslationPluginTranslationDefinition
ShopwareCoreFrameworkLanguageLanguageDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemLocaleLocaleDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelLanguageSalesChannelLanguageDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentNewsletterAggregateNewsletterRecipientNewsletterRecipientDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentCategoryAggregateCategoryTranslationCategoryTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemCountryAggregateCountryStateTranslationCountryStateTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemCountryAggregateCountryTranslationCountryTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemCurrencyAggregateCurrencyTranslationCurrencyTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupTranslationCustomerGroupTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemLocaleAggregateLocaleTranslationLocaleTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentMediaAggregateMediaTranslationMediaTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreCheckoutPaymentAggregatePaymentMethodTranslationPaymentMethodTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductManufacturerTranslationProductManufacturerTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductTranslationProductTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreCheckoutShippingAggregateShippingMethodTranslationShippingMethodTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemUnitAggregateUnitTranslationUnitTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupTranslationPropertyGroupTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupOptionTranslationPropertyGroupOptionTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTranslationSalesChannelTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeTranslationSalesChannelTypeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalutationAggregateSalutationTranslationSalutationTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentProductStreamAggregateProductStreamTranslationProductStreamTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemStateMachineStateMachineTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentCmsAggregateCmsPageTranslationCmsPageTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentCmsAggregateCmsSlotTranslationCmsSlotTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateTranslationMailTemplateTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentMailTemplateAggregateMailHeaderFooterTranslationMailHeaderFooterTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentTypeTranslationDocumentTypeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeTypeTranslationNumberRangeTypeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentDeliveryTimeAggregateDeliveryTimeTranslationDeliveryTimeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductSearchKeywordProductSearchKeywordDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductKeywordDictionaryProductKeywordDictionaryDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateTypeTranslationMailTemplateTypeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeTranslationNumberRangeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreFrameworkSeoSeoUrlSeoUrlDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareStorefrontThemeAggregateThemeTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreFrameworkSeoSeoUrlSeoUrlDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreFrameworkSeoSeoUrlTemplateSeoUrlTemplateDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreFrameworkSeoMainCategoryMainCategoryDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreFrameworkSeoMainCategoryMainCategoryDefinition
ShopwareCoreSystemSalesChannelSalesChannelDefinition --> ShopwareCoreFrameworkSeoMainCategoryMainCategoryDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTranslationSalesChannelTranslationDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelCurrencySalesChannelCurrencyDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelLanguageSalesChannelLanguageDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelCountrySalesChannelCountryDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelPaymentMethodSalesChannelPaymentMethodDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelShippingMethodSalesChannelShippingMethodDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeSalesChannelTypeDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemCurrencyCurrencyDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutPaymentPaymentMethodDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutShippingShippingMethodDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemCountryCountryDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemSystemConfigSystemConfigDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentProductAggregateProductVisibilityProductVisibilityDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentMailTemplateAggregateMailHeaderFooterMailHeaderFooterDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentNewsletterAggregateNewsletterRecipientNewsletterRecipientDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateSalesChannelMailTemplateSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeSalesChannelNumberRangeSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigSalesChannelDocumentBaseConfigSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareStorefrontThemeAggregateThemeSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreSystemCountryCountryDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelCountrySalesChannelCountryDefinition
ShopwareCoreSystemCurrencyCurrencyDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelCurrencySalesChannelCurrencyDefinition
ShopwareCoreSystemCurrencyCurrencyDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition
ShopwareCoreFrameworkSnippetAggregateSnippetSetSnippetSetDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelDomainSalesChannelDomainDefinition
ShopwareCoreCheckoutPaymentPaymentMethodDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelPaymentMethodSalesChannelPaymentMethodDefinition
ShopwareCoreCheckoutShippingShippingMethodDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelShippingMethodSalesChannelShippingMethodDefinition
ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeTranslationSalesChannelTypeTranslationDefinition --> ShopwareCoreSystemSalesChannelAggregateSalesChannelTypeSalesChannelTypeDefinition
ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreSystemCountryAggregateCountryTranslationCountryTranslationDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreSystemCountryAggregateCountryStateTranslationCountryStateTranslationDefinition --> ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition
ShopwareCoreSystemCurrencyAggregateCurrencyTranslationCurrencyTranslationDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreCheckoutShippingAggregateShippingMethodPriceShippingMethodPriceDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPricePromotionDiscountPriceDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
ShopwareCoreSystemLocaleAggregateLocaleTranslationLocaleTranslationDefinition --> ShopwareCoreSystemLocaleLocaleDefinition
ShopwareCoreSystemUserUserDefinition --> ShopwareCoreSystemLocaleLocaleDefinition
ShopwareCoreFrameworkSnippetSnippetDefinition --> ShopwareCoreFrameworkSnippetAggregateSnippetSetSnippetSetDefinition
ShopwareCoreSystemSalutationAggregateSalutationTranslationSalutationTranslationDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreContentNewsletterAggregateNewsletterRecipientNewsletterRecipientDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreSystemTaxTaxDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreSystemUnitUnitDefinition
ShopwareCoreSystemUnitAggregateUnitTranslationUnitTranslationDefinition --> ShopwareCoreSystemUnitUnitDefinition
ShopwareCoreContentMediaMediaDefinition --> ShopwareCoreSystemUserUserDefinition
ShopwareCoreSystemUserAggregateUserAccessKeyUserAccessKeyDefinition --> ShopwareCoreSystemUserUserDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineHistoryStateMachineHistoryDefinition --> ShopwareCoreSystemUserUserDefinition
ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition --> ShopwareCoreSystemUserUserDefinition
ShopwareCoreSystemUserAggregateUserRecoveryUserRecoveryDefinition --> ShopwareCoreSystemUserUserDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition --> ShopwareCoreSystemStateMachineStateMachineDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineTransitionStateMachineTransitionDefinition --> ShopwareCoreSystemStateMachineStateMachineDefinition
ShopwareCoreSystemStateMachineStateMachineTranslationDefinition --> ShopwareCoreSystemStateMachineStateMachineDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineHistoryStateMachineHistoryDefinition --> ShopwareCoreSystemStateMachineStateMachineDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineTransitionStateMachineTransitionDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateTranslationDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreSystemStateMachineAggregationStateMachineHistoryStateMachineHistoryDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeTypeNumberRangeTypeDefinition --> ShopwareCoreSystemNumberRangeNumberRangeDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeSalesChannelNumberRangeSalesChannelDefinition --> ShopwareCoreSystemNumberRangeNumberRangeDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeStateNumberRangeStateDefinition --> ShopwareCoreSystemNumberRangeNumberRangeDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeTranslationNumberRangeTranslationDefinition --> ShopwareCoreSystemNumberRangeNumberRangeDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeTypeNumberRangeTypeDefinition --> ShopwareCoreSystemNumberRangeAggregateNumberRangeSalesChannelNumberRangeSalesChannelDefinition
ShopwareCoreSystemNumberRangeAggregateNumberRangeTypeTranslationNumberRangeTypeTranslationDefinition --> ShopwareCoreSystemNumberRangeAggregateNumberRangeTypeNumberRangeTypeDefinition
ShopwareCoreContentProductAggregateProductTagProductTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreContentMediaAggregateMediaTagMediaTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreContentCategoryAggregateCategoryTagCategoryTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerTagCustomerTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreCheckoutShippingAggregateShippingMethodTagShippingMethodTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreContentNewsletterAggregateNewsletterRecipientTagNewsletterRecipientTagDefinition --> ShopwareCoreSystemTagTagDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentMediaMediaDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentCategoryAggregateCategoryTranslationCategoryTranslationDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentProductAggregateProductCategoryProductCategoryDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentProductAggregateProductCategoryTreeProductCategoryTreeDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentCategoryAggregateCategoryTagCategoryTagDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentCmsCmsPageDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreFrameworkSeoSeoUrlSeoUrlDefinition
ShopwareCoreContentMediaAggregateMediaTranslationMediaTranslationDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentMediaAggregateMediaTagMediaTagDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentMediaAggregateMediaThumbnailMediaThumbnailDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentProductAggregateProductManufacturerProductManufacturerDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentProductAggregateProductMediaProductMediaDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentMediaAggregateMediaFolderMediaFolderDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateMediaMailTemplateMediaDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigDocumentBaseConfigDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreCheckoutShippingShippingMethodDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreCheckoutPaymentPaymentMethodDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentProductAggregateProductConfiguratorSettingProductConfiguratorSettingDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentCmsAggregateCmsBlockCmsBlockDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentCmsAggregateCmsSectionCmsSectionDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentCmsCmsPageDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreCheckoutDocumentDocumentDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareStorefrontThemeThemeDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareStorefrontThemeAggregateThemeMediaDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentMediaAggregateMediaFolderMediaFolderDefinition --> ShopwareCoreContentMediaAggregateMediaDefaultFolderMediaDefaultFolderDefinition
ShopwareCoreContentMediaAggregateMediaFolderMediaFolderDefinition --> ShopwareCoreContentMediaAggregateMediaFolderMediaFolderDefinition
ShopwareCoreContentMediaAggregateMediaFolderConfigurationMediaFolderConfigurationDefinition --> ShopwareCoreContentMediaAggregateMediaFolderMediaFolderDefinition
ShopwareCoreContentMediaAggregateMediaFolderConfigurationMediaThumbnailSizeMediaFolderConfigurationMediaThumbnailSizeDefinition --> ShopwareCoreContentMediaAggregateMediaThumbnailSizeMediaThumbnailSizeDefinition
ShopwareCoreContentMediaAggregateMediaFolderConfigurationMediaThumbnailSizeMediaFolderConfigurationMediaThumbnailSizeDefinition --> ShopwareCoreContentMediaAggregateMediaFolderConfigurationMediaFolderConfigurationDefinition
ShopwareCoreContentProductAggregateProductCategoryTreeProductCategoryTreeDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentDeliveryTimeDeliveryTimeDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductManufacturerProductManufacturerDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductMediaProductMediaDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductPriceProductPriceDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductPropertyProductPropertyDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductCategoryProductCategoryDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductTagProductTagDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductTranslationProductTranslationDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductConfiguratorSettingProductConfiguratorSettingDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductOptionProductOptionDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductVisibilityProductVisibilityDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductSearchKeywordProductSearchKeywordDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition --> ShopwareCoreContentProductProductDefinition
ShopwareCoreContentProductProductDefinition --> ShopwareCoreFrameworkSeoSeoUrlSeoUrlDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition --> ShopwareCoreContentProductAggregateProductConfiguratorSettingProductConfiguratorSettingDefinition
ShopwareCoreContentRuleRuleDefinition --> ShopwareCoreContentProductAggregateProductPriceProductPriceDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition --> ShopwareCoreContentProductAggregateProductPropertyProductPropertyDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition
ShopwareCoreContentProductAggregateProductManufacturerTranslationProductManufacturerTranslationDefinition --> ShopwareCoreContentProductAggregateProductManufacturerProductManufacturerDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition --> ShopwareCoreContentProductAggregateProductOptionProductOptionDefinition
ShopwareCoreCheckoutShippingShippingMethodDefinition --> ShopwareCoreContentDeliveryTimeDeliveryTimeDefinition
ShopwareCoreContentDeliveryTimeAggregateDeliveryTimeTranslationDeliveryTimeTranslationDefinition --> ShopwareCoreContentDeliveryTimeDeliveryTimeDefinition
ShopwareCoreContentNewsletterAggregateNewsletterRecipientTagNewsletterRecipientTagDefinition --> ShopwareCoreContentNewsletterAggregateNewsletterRecipientNewsletterRecipientDefinition
ShopwareCoreContentRuleAggregateRuleConditionRuleConditionDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutShippingAggregateShippingMethodPriceShippingMethodPriceDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutShippingShippingMethodDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPaymentPaymentMethodDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupRulePromotionSetGroupRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreContentRuleAggregateRuleConditionRuleConditionDefinition --> ShopwareCoreContentRuleAggregateRuleConditionRuleConditionDefinition
ShopwareCoreContentProductStreamAggregateProductStreamTranslationProductStreamTranslationDefinition --> ShopwareCoreContentProductStreamProductStreamDefinition
ShopwareCoreContentProductStreamAggregateProductStreamFilterProductStreamFilterDefinition --> ShopwareCoreContentProductStreamProductStreamDefinition
ShopwareCoreContentProductStreamAggregateProductStreamFilterProductStreamFilterDefinition --> ShopwareCoreContentProductStreamAggregateProductStreamFilterProductStreamFilterDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition --> ShopwareCoreContentPropertyPropertyGroupDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupTranslationPropertyGroupTranslationDefinition --> ShopwareCoreContentPropertyPropertyGroupDefinition
ShopwareCoreContentPropertyAggregatePropertyGroupOptionTranslationPropertyGroupOptionTranslationDefinition --> ShopwareCoreContentPropertyAggregatePropertyGroupOptionPropertyGroupOptionDefinition
ShopwareCoreContentCmsAggregateCmsSectionCmsSectionDefinition --> ShopwareCoreContentCmsCmsPageDefinition
ShopwareCoreContentCmsAggregateCmsPageTranslationCmsPageTranslationDefinition --> ShopwareCoreContentCmsCmsPageDefinition
ShopwareCoreContentCmsAggregateCmsBlockCmsBlockDefinition --> ShopwareCoreContentCmsAggregateCmsSectionCmsSectionDefinition
ShopwareCoreContentCmsAggregateCmsSlotCmsSlotDefinition --> ShopwareCoreContentCmsAggregateCmsBlockCmsBlockDefinition
ShopwareCoreContentCmsAggregateCmsSlotTranslationCmsSlotTranslationDefinition --> ShopwareCoreContentCmsAggregateCmsSlotCmsSlotDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateTranslationMailTemplateTranslationDefinition --> ShopwareCoreContentMailTemplateMailTemplateDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateSalesChannelMailTemplateSalesChannelDefinition --> ShopwareCoreContentMailTemplateMailTemplateDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateTypeMailTemplateTypeDefinition --> ShopwareCoreContentMailTemplateMailTemplateDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateMediaMailTemplateMediaDefinition --> ShopwareCoreContentMailTemplateMailTemplateDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateTypeTranslationMailTemplateTypeTranslationDefinition --> ShopwareCoreContentMailTemplateAggregateMailTemplateTypeMailTemplateTypeDefinition
ShopwareCoreContentMailTemplateAggregateMailTemplateSalesChannelMailTemplateSalesChannelDefinition --> ShopwareCoreContentMailTemplateAggregateMailTemplateTypeMailTemplateTypeDefinition
ShopwareCoreContentMailTemplateAggregateMailHeaderFooterTranslationMailHeaderFooterTranslationDefinition --> ShopwareCoreContentMailTemplateAggregateMailHeaderFooterMailHeaderFooterDefinition
ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition --> ShopwareCoreContentImportExportImportExportProfileDefinition
ShopwareCoreContentImportExportAggregateImportExportFileImportExportFileDefinition --> ShopwareCoreContentImportExportAggregateImportExportLogImportExportLogDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutPaymentPaymentMethodDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerTagCustomerTagDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition --> ShopwareCoreCheckoutCustomerAggregateCustomerGroupTranslationCustomerGroupTranslationDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentTypeDocumentTypeDefinition --> ShopwareCoreCheckoutDocumentDocumentDefinition
ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreCheckoutDocumentDocumentDefinition
ShopwareCoreCheckoutDocumentDocumentDefinition --> ShopwareCoreCheckoutDocumentDocumentDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentTypeTranslationDocumentTypeTranslationDefinition --> ShopwareCoreCheckoutDocumentAggregateDocumentTypeDocumentTypeDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigDocumentBaseConfigDefinition --> ShopwareCoreCheckoutDocumentAggregateDocumentTypeDocumentTypeDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigSalesChannelDocumentBaseConfigSalesChannelDefinition --> ShopwareCoreCheckoutDocumentAggregateDocumentTypeDocumentTypeDefinition
ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigSalesChannelDocumentBaseConfigSalesChannelDefinition --> ShopwareCoreCheckoutDocumentAggregateDocumentBaseConfigDocumentBaseConfigDefinition
ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreCheckoutOrderOrderDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition
ShopwareCoreCheckoutShippingShippingMethodDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition
ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition
ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition
ShopwareCoreCheckoutPaymentPaymentMethodDefinition --> ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition
ShopwareCoreCheckoutPaymentAggregatePaymentMethodTranslationPaymentMethodTranslationDefinition --> ShopwareCoreCheckoutPaymentPaymentMethodDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupPromotionSetGroupDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionIndividualCodePromotionIndividualCodeDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPricePromotionDiscountPriceDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupRulePromotionSetGroupRuleDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupPromotionSetGroupDefinition
ShopwareCoreCheckoutShippingAggregateShippingMethodTranslationShippingMethodTranslationDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition
ShopwareCoreCheckoutShippingAggregateShippingMethodPriceShippingMethodPriceDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition
ShopwareCoreCheckoutShippingAggregateShippingMethodTagShippingMethodTagDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition
ShopwareStorefrontThemeAggregateThemeTranslationDefinition --> ShopwareStorefrontThemeThemeDefinition
ShopwareStorefrontThemeAggregateThemeSalesChannelDefinition --> ShopwareStorefrontThemeThemeDefinition
ShopwareStorefrontThemeAggregateThemeMediaDefinition --> ShopwareStorefrontThemeThemeDefinition
ShopwareStorefrontThemeThemeDefinition --> ShopwareStorefrontThemeThemeDefinition
@enduml
| false | true | false | false | sequence |
4273daa3b299a2d3138d6e00152c46c50b24d4c4 | c4f430b970530122d9e00feb4f39182f894f1e61 | /geo-match/design/src/main/uml/High level design/packages.plantuml | 62db7e97961191e61206fec5f15732c1b96d32e8 | [
"Apache-2.0"
] | permissive | christianfranco/the-clean-code-bay | b8fc0a3b05ee67e01d6756658f2cfddfdf375381 | a4933c7dc641c8f20612d2458394fefe93179843 | refs/heads/master | 2021-06-27T14:03:46.657093 | 2021-06-19T09:35:14 | 2021-06-19T09:35:14 | 78,943,178 | 0 | 1 | Apache-2.0 | 2020-10-22T14:33:07 | 2017-01-14T13:55:57 | Java | UTF-8 | PlantUML | false | false | 441 | plantuml | @startuml
title High-level overview
package "Client" {
[command-line] as LINE
}
cloud network
node <<concrete layer>>{
package "Connector" {
[geolocation-connector] as CONN
}
}
node <<abstract layer>>{
package "Command" {
[commands] as CMD
}
package "Core" {
[core] as CORE
}
}
CONN -> CMD
CMD -> CORE
LINE <.> network
network <.> CONN
@enduml
| false | true | false | false | deployment |
b8cadb6fda203fb638bea7911cb01163a4cdf116 | 4a8c8a0dd57d14d0b42c8a8adfee8af99a6cb8fa | /todoDiagram.puml | 886a2d74de49f884eed391e028d3bba35e43b263 | [] | no_license | matthew00mckee/mckee-cop3330-assignment4 | 352cd0d42245e24bc01418556797f19fe0adc799 | 1f095bd42e91b9d007fd7605cc8343ed382de640 | refs/heads/master | 2023-06-15T17:21:26.126770 | 2021-07-07T23:49:58 | 2021-07-07T23:49:58 | 383,295,017 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 591 | puml | @startuml
'https://plantuml.com/class-diagram
class ListController {
+ main()
+ start()
}
class ListEditor {
- printListTitle : TextField
- printTaskTitle : TextField
- printTaskDescription : TextField
- printDueDate : TextField
+ viewList()
+ editList()
+ deleteList()
+ newList()
+ checkList()
+ saveList()
}
class TaskEditor {
+ newTask()
+ editTask()
+ saveTask()
+ deleteTask()
+ checkTask()
+ markCompleted()
}
javafx.ListManager <|-- ListController
ListController -> ListEditor
ListEditor <-> TaskEditor
@enduml | false | true | false | false | class |
3ef0d2ece6f05f958a435ad91b7c7bf091df8ab8 | 576fc3b5e9704047ec51894dbf34a8b21e3ec38e | /src/main/resources/diagramas/diagrama-secuencia.puml | 6e17cca07e5eb41786b3a8a25eac23cb08439b0a | [] | no_license | hiderestudios/aulavirtual-web | 96ac0de3eda4bb45dd01980b7fc257cff3dc71d5 | ff5b044e3d5c4117837800f0a52f67a8f396b139 | refs/heads/master | 2021-01-13T04:46:26.112583 | 2015-06-22T17:15:38 | 2015-06-22T17:15:38 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 348 | puml | @startuml
Usuario -> UI:Registra datos
UI -> Controladora: Requiere registrar datos
Controladora -> EJB: Enviar datos del usuario
EJB -> JPA: Guarda registros
JPA --> EJB: Objeto creado
EJB --> Controladora: Objeto creado
Controladora --> UI: Confirmacion \nde registro \nde datos
UI --> Usuario: Muestra confirmacion \nde registro de datos
@enduml | false | true | false | false | sequence |
c880f4dc53e901b0e5e540106f88b0228aefaf01 | 23cd79e88b6499122e36d042beb1bed5bc5491a2 | /documentation/Diagramme de classe .puml | 2fe02dcda81ead8955c0b7f5415e9d8ee8ab794b | [] | no_license | Miage-Paris-Ouest/m1c20152016-planibu | 9f7859cc85dc91b50767724c3eabd833623b7cb2 | a95da15df11fe220cc7ae9e5d9aa0e1f851f1a6a | refs/heads/master | 2020-04-09T21:25:23.306845 | 2016-02-25T22:49:28 | 2016-02-25T22:49:28 | 50,098,026 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 602 | puml | @startuml
@startuml
Utilisateur "0..*" -- "1..*" Map : consulter
Salle"1..6"-- "1"Map : rechercher
Salle "1"*-- "1..*" Etagére
Discipline"1..*"--* "1..*" Etagére
Discipline "1"*-- "1..*" SousDiscipline
SousDiscipline"1..*"*-- "1..*" Livre
Livre *-- Cote
Cote *-- RacineDeCote
class Map{
nomMap:String
plan:Map
}
class Salle {
nomSalle:String
niveau:Int
}
class Etagére{
numEtagere:Int
}
class Discipline{
nomDisc:String
}
class SousDiscipline{
nomSousDisc:String
}
class Livre {
titre:String
auteur:String
}
class Cote {
numCote:Int
}
class RacineDeCote{
indiceCote:Int
}
@enduml
| false | true | true | false | class |
d8673c4495c09aec4ffaf9fcf06043761c13c38d | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/StatusView.puml | cbff794c3f9b3df252166a5e72b039625e58a07b | [] | 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 | 364 | puml | @startuml
class StatusView {
+ message : string <<get>> <<set>>
+ buttonText : string <<get>> <<set>>
+ StatusView()
}
VisualElement <|-- StatusView
StatusView --> "m_Image" Image
StatusView --> "m_Message" Label
StatusView --> "m_Button" Button
StatusView --> "m_Callback" Action
StatusView --> "icon" Texture
StatusView --> "callback" Action
@enduml
| false | true | false | false | class |
8c7220374e246037495da3f94651c8edfe99b65c | c2b6bfee8da36cc39de688e146ba107b74218b12 | /plantuml/objectmodel/details/token.plantuml | 8ae368ee2e9b3ec54b5efb0d138f98b01771f6d6 | [
"Apache-2.0"
] | permissive | TOMP-WG/TOMP-API | 02bbd268c6ece21f7a5d28f4e42e1b456233e8e9 | 2aa6ae3d6b355a12a8936ff1069821bb7c89a743 | refs/heads/master | 2023-09-01T16:13:50.445300 | 2023-07-25T12:08:52 | 2023-07-25T12:08:52 | 189,022,994 | 80 | 34 | Apache-2.0 | 2023-08-22T12:36:34 | 2019-05-28T12:21:59 | null | UTF-8 | PlantUML | false | false | 589 | plantuml | @startuml generated
class Token {
+String validFrom
+String validUntil
+String tokenType
}
Token -- "0..1" TokenData : tokenData >
class TokenQR {
+String base64
String version
}
TokenQR -up-|> TokenData
class TokenData {
+String tokenType
}
class TokenArray {
}
class TokenDefault {
String url
}
TokenDefault -up-|> TokenData
class TokenDeeplink {
String url
String knownParameters
}
TokenDeeplink -up-|> TokenData
class TokenEKey {
+Object ekey
String key
Object passkey
String bdAddress
String deviceName
}
TokenEKey -up-|> TokenData
TokenArray -{ Token
@enduml
| false | true | false | false | class |
fbae817c2c2ad7da17af59e440a7f13ff90ca591 | 0f1ab9645498afeb56d6c24198fd291eb0b36bea | /docs/design/network-discovery/ISL-FSM.puml | e527f3eff864d0dd7acdd4d936799d189df86163 | [
"Apache-2.0"
] | permissive | NandanBharadwaj/open-kilda | 5398c0e4a63da82027f807551b930a40a5a5479d | b55904e06a7889bdd4e816499ecf6e1abb3eea14 | refs/heads/master | 2021-08-17T06:43:14.213503 | 2019-10-17T10:35:23 | 2019-10-17T10:35:23 | 217,000,697 | 1 | 0 | Apache-2.0 | 2019-10-23T07:56:34 | 2019-10-23T07:56:33 | null | UTF-8 | PlantUML | false | false | 1,761 | puml | Internal data:
* endpoint-A
* endpoint-B
* endpoint-A-up
* endpoint-B-up
Input signals:
* isl-up
* isl-down
* isl-move
Output signals:
* bisl-up (notify BFD-port, notify reroute)
* bisl-down (notify reroute)
* bisl-bfd-enable
* bisl-bfd-disable
* isl-move
@startuml
title ISL FSM
[*] --> INIT
INIT --> DOWN : isl-up / set endpoint-(A||B)-status = UP\nisl-down / set endpoint-(A||B)-status = DOWN
INIT --> DOWN : history [history-down]
INIT --> UP : history [history-up]\n/ apply-history\n/ emit bisl-bfd-enable
INIT --> MOVED : history [history-moved]\nisl-move / set endpoint-(A||B)-status = MOVED
state upAttempt <<choice>>
state deleteAttempt <<choice>>
deleteAttempt --> DELETED : [endpoint-(A&B)-status == DOWN]
DOWN --> upAttempt : isl-up / set endpoint-(A||B)-status = DOWN && discovery-data
DOWN --> MOVED : isl-move
DOWN : enter / persist DB state
DOWN : isl-down / set endpoint-(A||B)-status = DOWN
DOWN : isl-down / persist DB state
DOWN -> deleteAttempt : isl-remove
upAttempt --> UP : [endpoint-(A&&B)-status == UP]
upAttempt --> DOWN : [else]
UP --> DOWN : isl-down
UP --> MOVED : isl-move
UP : enter / persist DB state
UP : enter / emit bisl-up
UP : enter [enable_bfd in DB is set] / emit bisl-bfd-enable
UP : exit / set endpoint-(A|B)-status = !UP (determine by event)
UP : exit / persist DB state
UP : exit [physical-down] / raise ISL(uni) cost
UP : exit / emit bisl-down
MOVED --> upAttempt : isl-up / set endpoint-(A|B)-status = UP
MOVED --> deleteAttempt : isl-remove
MOVED : enter / persist DB state
MOVED : enter / emit isl-move
MOVED : enter / set endpoint-(A|B)-status = MOVED
MOVED : enter / emit bisl-bfd-disable
MOVED : isl-down / set endpoint-(A|B)-status = DOWN
MOVED : isl-down / persist DB state
DELETED -> [*]
@enduml
| false | true | false | false | sequence |
a14cdbb0e4ca8e023f2c8441378586481287f543 | 26c55a2c45b6ec801eaef66f4fa3985bfbe99c7a | /DomainModel/src-gen/Forum_ContextMap.puml | bc46bdc6e9d96c3d6ae2a594e851e67d4f9dc9ad | [
"MIT"
] | permissive | ejuntu/Eventforum.Net | 03d40329e1b8a6dcbb994c5d724b78c2bcf2e1ab | 5deafaa07bc329f3ebd4cc5528ba95524530527e | refs/heads/main | 2023-07-06T23:09:26.957443 | 2021-08-06T10:39:24 | 2021-08-06T10:39:24 | 391,983,750 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 535 | puml | @startuml ForumContextMap
skinparam componentStyle uml2
component [ForumContext]
note right of [ForumContext]
This Bounded Context manages the
Chat Forum content
end note
component [UserManagementContext]
note right of [UserManagementContext]
This Bounded Context manages the
user information
end note
interface "EventBus" as ForumContext_to_UserManagementContext
[UserManagementContext] --> ForumContext_to_UserManagementContext : OPEN_HOST_SERVICE
ForumContext_to_UserManagementContext <.. [ForumContext] : consume
@enduml
| false | true | false | false | sequence |
5bf85d826dcadc7bb4b53e5b6ef1a74b2dbed05e | 4e22bdc55bdc3e7f861cde56da0ccb080a1b6b26 | /hastaff.puml | 5a0d7e4d90dbde96bffb981cc22c3f2201d7b283 | [] | no_license | ahmad-hl/comp3021-corona-spring2021 | d6f48509cd91583ee256dacd6c55f6a66658f2b1 | b222aaeed25b83c0d722035905439e4c0af50834 | refs/heads/master | 2023-03-18T09:29:24.419027 | 2021-03-11T15:22:37 | 2021-03-11T15:22:37 | 337,751,700 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,856 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class HealthAuthorityStaff{
# #leadership: int
# #medicine: int
# #experience: int
- -isReady: bool
+ +HealthAuthorityStaff(leadership: int, medicine: int, exper: int)
+ +isReady(): bool
+ +beginTurn()
+ +endTurn()
# #getBonusPoints(): int
+ +developMedicationFacility(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +buildMasksFactory(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +upgradeFMaskQuality(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +banTravel(player: Player, city: City)
+ +liftTravelBan(player: Player, city: City)
+ +developVaccine(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +upgradeVaccine(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +toString() : String
}
class ChiefExecutive{
# #getBonusPoints(): int
+ +banTravel(player: Player, city: City)
+ +liftTravelBan(player: Player, city: City)
}
class HealthMinister{
# #getBonusPoints(): int
+ +developMedicationFacility(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +buildMasksFactory(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +toString() : String
}
class Epidemiologist{
# #getBonusPoints(): int
+ +upgradeFMaskQuality(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +developVaccine(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +upgradeVaccine(player: Player, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +toString() : String
}
HealthAuthorityStaff <|-- ChiefExecutive
HealthAuthorityStaff <|-- HealthMinister
HealthAuthorityStaff <|-- Epidemiologist
@enduml | false | true | false | false | class |
e613e33a4e0693d2a881da40b09b9185fcc2866a | 1e992cebb323e6f1bbddd1e23b6214f8806b7834 | /sip/EndToEnd/sip_state_invite_uac_proxy_uas_success_accept.puml | 6808dc3c8375e485aa35be2b2ef4f1f3bdf044c9 | [] | no_license | gongpengjun/code_diagrams | 006c66441ae26331d19a408912af01c84e1bd5f4 | 686a830f47e407ddc58e7f8003331ee4fca5975c | refs/heads/master | 2021-06-26T00:52:25.079556 | 2020-10-27T13:45:34 | 2020-10-27T13:45:34 | 166,416,838 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,777 | puml | @startuml
title INVITE Accept flow with stateful proxy
skinparam monochrome true
hide footbox
autonumber "F00 "
skinparam BoxPadding 40
skinparam headerFontSize 14
'skinparam headerFontColor red
header SIP-0
box "caller"
participant "INVITE Transaction Client" as UAC_ITC << caller >>
participant "ACK Transaction Client 1" as UAC_AckTC1 << UAC >>
participant "ACK Transaction Client 2" as UAC_AckTC2 << UAC >>
end box
box "proxy"
participant "INVITE Transaction Server" as Proxy_ITS << Server >>
participant "Proxy Core" as Proxy_Core << Server >>
participant "INVITE Transaction Client" as Proxy_ITC << Server >>
end box
box "callee"
participant "ACK Transaction Server" as UAS_AckTS << UAS >>
participant "INVITE Transaction Server" as UAS_ITS << UAS >>
end box
'hnote over UAC_ITC: None
'UAC_ITC -> Proxy_ITS: INVITE
activate UAC_ITC
'hnote over UAC_ITC: Calling
activate Proxy_ITS
hnote over Proxy_ITS: Proceeding
'UAC_ITC <- Proxy_ITS: 100 Trying
hnote over UAC_ITC: Proceeding
'hnote over Proxy_ITC: None
'Proxy_ITS -> Proxy_ITC: INVITE
activate Proxy_ITC
'Proxy_ITC -> UAS_ITS: INVITE
'hnote over Proxy_ITC: Calling
activate UAS_ITS
hnote over UAS_ITS: Proceeding
'Proxy_ITC <- UAS_ITS: 180 Ringing
note right of UAS_ITS: Ringing
hnote over Proxy_ITC: Proceeding
'Proxy_ITS <- Proxy_ITC: 180 Ringing
'UAC_ITC <- Proxy_ITS: 180 Ringing
note left of UAC_ITC: Ringing
== wait for HUMAN input ==
UAS_ITS <-- : callee user accept
hnote over UAS_ITS: Terminated
deactivate UAS_ITS
'hnote over UAS_AckTS: None
UAS_ITS -> UAS_AckTS: 200 OK (INVITE)
activate UAS_AckTS
hnote over UAS_AckTS: Proceeding
Proxy_ITC x<- UAS_AckTS: 200 OK (INVITE)
UAS_AckTS -> UAS_AckTS: start retransmit timer\n(0.5s, 1s, 2s...32s)
UAS_AckTS -> UAS_AckTS: start timer F (transaction timeout)\n(32s)
Proxy_ITC <- UAS_AckTS: 200 OK (INVITE) retransmit timer fired
hnote over Proxy_ITC: Terminated
Proxy_ITS <- Proxy_ITC: 200 OK (INVITE)
deactivate Proxy_ITC
hnote over Proxy_ITS: Terminated
UAC_ITC x<- Proxy_ITS: 200 OK (INVITE)
'UAC_ITC <- Proxy_ITS: 200 OK (INVITE)
deactivate Proxy_ITS
Proxy_Core <- UAS_AckTS: 200 OK (INVITE) retransmit timer fired
activate Proxy_Core
UAC_ITC <- Proxy_Core: 200 OK (INVITE)
deactivate Proxy_Core
hnote over UAC_ITC: Terminated
deactivate UAC_ITC
note left of UAC_ITC: Established
'hnote over UAC_AckTC1: None
UAC_AckTC1 <- UAC_ITC: 200 OK (INVITE)
activate UAC_AckTC1
UAC_AckTC1 ->x Proxy_Core: ACK
'hnote over UAC_AckTC1: Terminated
deactivate UAC_AckTC1
'hnote over UAC_AckTC2: None
Proxy_Core <- UAS_AckTS: 200 OK (INVITE) retransmit timer fired
activate Proxy_Core
UAC_AckTC2 <- Proxy_Core: 200 OK (INVITE)
deactivate Proxy_Core
activate UAC_AckTC2
'hnote over Proxy_Core: 200/ACK retransmit is not belong to transaction in server\nlog:"[INFO] apply-signal. message not belong to transaction ... transition: :rsp-2xx"\nlog:"[INFO] apply-signal. message not belong to transaction ... transition: :req-ack"
UAC_AckTC2 -> Proxy_Core: ACK
deactivate UAC_AckTC2
activate Proxy_Core
Proxy_Core -> UAS_AckTS: ACK
'hnote over UAC_AckTC2: Terminated
deactivate Proxy_Core
hnote over UAS_AckTS: Terminated
UAS_AckTS -> UAS_AckTS: timer F fired (transaction timeout)
hnote over UAS_AckTS: Terminated
note right of UAS_AckTS: Established
deactivate UAS_AckTS
skinparam footerFontSize 14
'skinparam footerFontColor red
footer INVITE Accept transaction is three way handshake(request,200,ACK) but delivered end-to-end (UAS retransmit 200 and UAC ACK it, the middle proxy only forwards 200/ACK)\n1. 200 is retransmitted only by UAS if UAS NOT receive ACK (retransmit timer fired); 2. proxy merely forwards 200; 3. ACK generated only by the UAC when UAC receive 200; 4. proxy merely forwards ACK\nsource: https://tools.ietf.org/html/rfc3261#section-17
@enduml | false | true | false | false | sequence |
f7156ca19d4082f7b183e6cd6c8aab7482d10f5e | c931fab627d76aac94f223642e63dc0f5358c800 | /app/src/main/java/com/example/aflah/tracki_master/Model/Model.plantuml | aad2c7a68d09743d897aaf7c117b073a790f27e5 | [] | no_license | aflahtaqiu/tracki-android | 842c78ad53d0717f51e094721150a6d8205e3a7a | 6990d21cf21771cd1e5927e44564b06f4b2c8391 | refs/heads/master | 2020-04-15T02:03:17.136741 | 2019-01-06T12:02:17 | 2019-01-06T12:02:17 | 164,301,470 | 0 | 0 | null | 2019-01-06T11:40:37 | 2019-01-06T11:40:36 | null | UTF-8 | PlantUML | false | false | 8,352 | plantuml | @startuml
title __MODEL's Class Diagram__\n
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Advertisement {
- id : int
- store_id : int
- banner : String
+ getId()
+ setId()
+ getStore_id()
+ setStore_id()
+ getBanner()
+ setBanner()
+ getStore()
+ setStore()
+ toString()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Advertisements {
- advertisements : List<Advertisement>
+ getAdvertisements()
+ setAdvertisements()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Category {
- id : int
- name : String
+ getId()
+ setId()
+ getName()
+ setName()
+ toString()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Galery {
- id : int
- store_id : int
- picture : String
+ getId()
+ setId()
+ getStore_id()
+ setStore_id()
+ getPicture()
+ setPicture()
+ toString()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class PivotPromo {
- store_id : int
- promotion_id : int
- user_id : int
+ getUser_id()
+ setUser_id()
+ getStore_id()
+ setStore_id()
+ getPromotion_id()
+ setPromotion_id()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class PivotReview {
- store_id : int
- user_id : int
- rating : double
- description : String
+ getStore_id()
+ setStore_id()
+ getUser_id()
+ setUser_id()
+ getRating()
+ setRating()
+ getDescription()
+ setDescription()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Product {
- id : int
- name : String
- price : double
- description : String
- picture : String
- stores : List<Store>
+ getStores()
+ setStores()
+ getId()
+ setId()
+ getName()
+ setName()
+ getPrice()
+ setPrice()
+ getDescription()
+ setDescription()
+ getCategory()
+ setCategory()
+ getPicture()
+ setPicture()
+ toString()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Promotion {
- id : int
- title : String
- description : String
- banner : String
- terms_and_policies : String
- expired_date : String
- stores : List<Store>
- saved : Boolean
- used : Boolean
+ getSaved()
+ setSaved()
+ getUsed()
+ setUsed()
+ getStore()
+ setStore()
+ getStores()
+ setStores()
+ getPivot()
+ setPivot()
+ getId()
+ setId()
+ getTitle()
+ setTitle()
+ getDescription()
+ setDescription()
+ getBanner()
+ setBanner()
+ getTerms_and_policies()
+ setTerms_and_policies()
+ getExpired_date()
+ setExpired_date()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Reviewer {
- id : int
- name : String
- email : String
- date_of_birth : String
- foto : String
- provider : String
- provider_id : String
+ getId()
+ setId()
+ getName()
+ setName()
+ getEmail()
+ setEmail()
+ getDate_of_birth()
+ setDate_of_birth()
+ getFoto()
+ setFoto()
+ getProvider()
+ setProvider()
+ getProvider_id()
+ setProvider_id()
+ getPivot()
+ setPivot()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class SearchName {
- id : String
- name : String
+ getId()
+ setId()
+ getName()
+ setName()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class Store {
- id : int
- advertisement_id : int
- uid : String
- name : String
- phone : String
- logo : String
- location : String
- open : String
- close : String
- promo : boolean
- products : List<Product>
- galleries : List<Galery>
- rating : double
- reviewers : List<Reviewer>
- promotions : List<Promotion>
+ getPromotions()
+ setPromotions()
+ getReviewers()
+ setReviewers()
+ getRating()
+ setRating()
+ getGalleries()
+ setGalleries()
+ getId()
+ setId()
+ getAdvertisement_id()
+ setAdvertisement_id()
+ getUid()
+ setUid()
+ getName()
+ setName()
+ getPhone()
+ setPhone()
+ getLogo()
+ setLogo()
+ getLocation()
+ setLocation()
+ getOpen()
+ setOpen()
+ getClose()
+ setClose()
+ isPromo()
+ setPromo()
+ getStore_type()
+ setStore_type()
+ getProducts()
+ setProducts()
+ toString()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class StoreType {
- id : int
- name : String
+ getId()
+ setId()
+ getName()
+ setName()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class User {
- name : String
- email : String
- dateOfBirth : String
- id : int
- foto : String
- stores : List<Store>
+ getName()
+ setName()
+ getEmail()
+ setEmail()
+ getDateOfBirth()
+ setDateOfBirth()
+ getId()
+ setId()
+ getFoto()
+ setFoto()
+ getStores()
+ setStores()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Model {
class UserLogin {
- id : int
- name : String
- email : String
- active : boolean
- dateOfBirth : String
- foto : String
- provider : String
- providerId : String
+ getId()
+ setId()
+ getName()
+ setName()
+ getEmail()
+ setEmail()
+ isActive()
+ setActive()
+ getDateOfBirth()
+ setDateOfBirth()
+ getFoto()
+ setFoto()
+ getProvider()
+ setProvider()
+ getProviderId()
+ setProviderId()
+ toString()
}
}
}
Advertisement o-- Store : store
Product o-- Category : category
Promotion o-- PivotPromo : pivot
Promotion o-- Store : store
Reviewer o-- PivotReview : pivot
Store o-- StoreType : store_type
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 |
eb87f17d676dd64f7a1b75809148c980e76e9ce0 | d7d2a8a78c08e7d4ab0e9f1afbd30c2304a4baef | /FinalProject/Diagrams/DGeneralDescription.puml | e553935bd782f16889f8a2dced578a5eabbe561b | [] | no_license | hectorgastaminza/comit | 3639892dc865979a84acd738e8e975df9e2f7ace | 24362fe12467506c19db4df3b7749e37f7647181 | refs/heads/master | 2020-03-20T02:08:37.560667 | 2018-08-02T01:26:26 | 2018-08-02T01:26:26 | 137,100,666 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 250 | puml | @startuml
actor User
component FrontEnd
component BackEnd
database DataBase
cloud Cloud as C1
cloud Cloud as C2
agent SmartDevices
User -right- C1
C1 -- FrontEnd
FrontEnd -- BackEnd
BackEnd -- DataBase
BackEnd -- C2
C2 -left- SmartDevices
@enduml
| false | true | false | false | sequence |
9c80cf3f63f8bd330ce87b4f2f93c4e5eea4fb75 | 5bdbd6738fe541bd2e09ee38cdcf8e5396e969e4 | /hadoop/src/mr2/secure-mapreduce2-04-job-initiation.puml | d7ce4e58506ff33a98170fa2c62e4183b97a2ec1 | [] | 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 | 2,881 | puml | @startuml
title Secure Map Reduce 2 - Map Reduce Job Initiation
autonumber
'hide footbox
'participant "Client\n(c)" as C
participant "Resource\nManager\n(rm)" as RM
'participant "History\nServer\n(hs)" as HS
participant "Node\nManager\n(nm)" as NM
participant "Shuffle\nHandler\n(ss)" as SS
participant "Application\nMaster\n(am)" as AM
participant "Client\nService\n(cs)" as CS
'participant "Application\nContainer\n(ac)" as AC #red
'participant "Task\n(t)" as T #orange
participant "File\nSystem\n(fs)" as FS
participant "Name\nNode\n(nn)" as NN
participant "Data\nNode\n(dn)" as DN
participant "Kerberos\nKDC" as KDC
'note over RM,DN #green: QUESTION ?
note over RM,KDC #green: Q1: Where are the submitApplication inputs (job-dir, c-tokens) stored?
activate RM
'1
RM->RM: <b>allocateResource\n ( mram-alloc-req )
note right: RM allocates resources\nwith itself for running MR AM.\nTokens from boostrap.
activate RM
'2
RM->RM: <b>createNodeManagerToken\n ( nm-tkn-mk )\n : nm-tkn
'3
RM->RM: <b>createContainerToken\n ( cntnr-tkn-mk )\n : cntnr-tkn
'4
RM<--RM: <b>:mram-alloc-res</b>{nm-tkn,cntnr-tkn}
deactivate RM
'5
RM->RM: <b>createApplicationToken\n ( app-tkn-mk )\n : app-tkn
note right: For AM to talk to the RM.
'6
RM->RM: <b>serializeTokens\n ( c-tokens, nm-tkn, cntnr-tkn, app-tkn )\n : rm-tokens
note right: c-tokens = { c-nn-dt, c-hs-dt, c-rm-dt, shfl-tkn }
'7
RM->KDC: <b>kinit/AS_REQ</b> [KRB] ( rm-kp ): AS_REP{rm-tgt}
'8
RM->KDC: <b>TGS_REQ</b> [KRB(rm-tgt)] ( nm-kp ): TGS_REP{rm-nm-kst}
'9
RM->NM: <b>startContainer\n [RSKT(rm-nm-kst)]\n ( mram-alloc-res, rm-tokens )
note right: rm-tokens = { c-nn-dt, c-hs-dt, c-rm-dt, shfl-tkn, nm-tkn, cntnr-tkn, app-tkn }
deactivate RM
activate NM
'10
create SS
NM->SS: <b>start</b>?
'11
NM->FS: <b>storeTokens\n ( rm-tokens ): rm-tokens-loc
note left: Write tokens to local token-file.\nIncludes client-token, protected\nby OS permissions
create AM
note over RM,KDC #green: Q2: What user is the AM run as?
'12
NM->AM: <b>exec\n [as rm?]\n ( job-dir, rm-tokens-loc )
activate AM
note left: Provided the location\nof the token file via env
deactivate NM
'13
AM->FS: <b>loadTokens\n ( rm-tokens-loc )\n : rm-tokens
'14
AM->AM: <b>createJobToken\n ( job-tkn-mk )\n : job-tkn
'15
AM->RM: <b>registerApplicationMaster\n [RSAT(app-tkn)]\n ()
note right: Lets NM know MR App is alive.
'16
create CS
AM->CS: <b>start</b>\n ( clnt-tkn-mk? )
note right: A listener for Client\nto query job status.
'AM uses the app token provided in the token file.
'This token file has user-only read perms.
'The AM then starts and RPC listener (client-service) for the client to talk to the client-app
'client-service is protected by the client-secret
'job-client polls RM and finds it running
'job-client switches to polling client-service for status
'MR app creates the JobToken
@enduml | false | true | false | false | sequence |
34ec70f8b9fd88e8448cc8b7ff95a81e8339f069 | 1efccbbe88ee2ef265623df09d3f202d3ae52adf | /diagrams/moving-concepts-in-a-microservices-architecture/event-republish.puml | 7bf99489a98cb3cd82ab4ae2a91ea49dd46d35db | [] | no_license | mlowen/mlowen.github.io | 2f449b630dd01fa56c771746beda797b6764626f | b44a7a3d2ed53bd9d5c56c7824c648adcd530d93 | refs/heads/master | 2023-04-15T20:14:02.190879 | 2022-05-22T01:02:13 | 2022-05-22T01:02:13 | 32,616,710 | 0 | 1 | null | 2023-04-12T06:11:32 | 2015-03-21T02:19:31 | SCSS | UTF-8 | PlantUML | false | false | 679 | puml | @startuml Event Republish
actor "Client"
participant "Service A"
participant "Service B"
participant "Original Service"
participant "Message Queue"
"Client" -> "Service A": Command
activate "Service A"
"Service A" --> "Message Queue": Publish new event
deactivate "Service A"
"Message Queue" --> "Original Service": Receive new event
activate "Original Service"
"Original Service" -> "Service B": Request data to augment
activate "Service B"
"Service B" -> "Original Service": Return data for augment
deactivate "Service B"
"Original Service" --> "Message Queue": Publish original event
deactivate "Original Service"
@enduml
| false | true | false | false | sequence |
68f726911b6a06d326eeba7ce894c4b825282df4 | 618414d7666e67b9535ebd975e1de61e9c01e095 | /QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/com/jjoe64/graphview/graphview.plantuml | 16966901093811b29d5dd40aab1e6ac7a99fdc59 | [] | no_license | h2312/Do-an-TTLTA-03-TIN230DV01-0100 | a0792724add3844de35d48a2bd87d3eeb8de8a93 | e9f01e84b45042bd6192333842fb80feabb74707 | refs/heads/master | 2022-06-30T21:56:05.032422 | 2020-04-25T10:33:44 | 2020-04-25T10:33:44 | 258,747,594 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 9,861 | plantuml | @startuml
title __GRAPHVIEW's Class Diagram__\n
package com.jjoe64.graphview {
class R {
- R()
}
}
package com.jjoe64.graphview {
class attr {
{static} + coordinatorLayoutStyle : int
{static} + font : int
{static} + fontProviderAuthority : int
{static} + fontProviderCerts : int
{static} + fontProviderFetchStrategy : int
{static} + fontProviderFetchTimeout : int
{static} + fontProviderPackage : int
{static} + fontProviderQuery : int
{static} + fontStyle : int
{static} + fontWeight : int
{static} + keylines : int
{static} + layout_anchor : int
{static} + layout_anchorGravity : int
{static} + layout_behavior : int
{static} + layout_dodgeInsetEdges : int
{static} + layout_insetEdge : int
{static} + layout_keyline : int
{static} + seriesColor : int
{static} + seriesData : int
{static} + seriesTitle : int
{static} + seriesType : int
{static} + statusBarBackground : int
- attr()
}
}
package com.jjoe64.graphview {
class bool {
{static} + abc_action_bar_embed_tabs : int
- bool()
}
}
package com.jjoe64.graphview {
class color {
{static} + notification_action_color_filter : int
{static} + notification_icon_bg_color : int
{static} + notification_material_background_media_default_color : int
{static} + primary_text_default_material_dark : int
{static} + ripple_material_light : int
{static} + secondary_text_default_material_dark : int
{static} + secondary_text_default_material_light : int
- color()
}
}
package com.jjoe64.graphview {
class dimen {
{static} + compat_button_inset_horizontal_material : int
{static} + compat_button_inset_vertical_material : int
{static} + compat_button_padding_horizontal_material : int
{static} + compat_button_padding_vertical_material : int
{static} + compat_control_corner_material : int
{static} + notification_action_icon_size : int
{static} + notification_action_text_size : int
{static} + notification_big_circle_margin : int
{static} + notification_content_margin_start : int
{static} + notification_large_icon_height : int
{static} + notification_large_icon_width : int
{static} + notification_main_column_padding_top : int
{static} + notification_media_narrow_margin : int
{static} + notification_right_icon_size : int
{static} + notification_right_side_padding_top : int
{static} + notification_small_icon_background_padding : int
{static} + notification_small_icon_size_as_large : int
{static} + notification_subtext_size : int
{static} + notification_top_pad : int
{static} + notification_top_pad_large_text : int
- dimen()
}
}
package com.jjoe64.graphview {
class drawable {
{static} + notification_action_background : int
{static} + notification_bg : int
{static} + notification_bg_low : int
{static} + notification_bg_low_normal : int
{static} + notification_bg_low_pressed : int
{static} + notification_bg_normal : int
{static} + notification_bg_normal_pressed : int
{static} + notification_icon_background : int
{static} + notification_template_icon_bg : int
{static} + notification_template_icon_low_bg : int
{static} + notification_tile_bg : int
{static} + notify_panel_notification_icon_bg : int
- drawable()
}
}
package com.jjoe64.graphview {
class id {
{static} + action0 : int
{static} + action_container : int
{static} + action_divider : int
{static} + action_image : int
{static} + action_text : int
{static} + actions : int
{static} + async : int
{static} + blocking : int
{static} + bottom : int
{static} + cancel_action : int
{static} + chronometer : int
{static} + end : int
{static} + end_padder : int
{static} + forever : int
{static} + icon : int
{static} + icon_group : int
{static} + info : int
{static} + italic : int
{static} + left : int
{static} + line1 : int
{static} + line3 : int
{static} + media_actions : int
{static} + none : int
{static} + normal : int
{static} + notification_background : int
{static} + notification_main_column : int
{static} + notification_main_column_container : int
{static} + right : int
{static} + right_icon : int
{static} + right_side : int
{static} + start : int
{static} + status_bar_latest_event_content : int
{static} + tag_transition_group : int
{static} + text : int
{static} + text2 : int
{static} + time : int
{static} + title : int
{static} + top : int
- id()
}
}
package com.jjoe64.graphview {
class integer {
{static} + cancel_button_image_alpha : int
{static} + status_bar_notification_info_maxnum : int
- integer()
}
}
package com.jjoe64.graphview {
class layout {
{static} + notification_action : int
{static} + notification_action_tombstone : int
{static} + notification_media_action : int
{static} + notification_media_cancel_action : int
{static} + notification_template_big_media : int
{static} + notification_template_big_media_custom : int
{static} + notification_template_big_media_narrow : int
{static} + notification_template_big_media_narrow_custom : int
{static} + notification_template_custom_big : int
{static} + notification_template_icon_group : int
{static} + notification_template_lines_media : int
{static} + notification_template_media : int
{static} + notification_template_media_custom : int
{static} + notification_template_part_chronometer : int
{static} + notification_template_part_time : int
- layout()
}
}
package com.jjoe64.graphview {
class string {
{static} + status_bar_notification_info_overflow : int
- string()
}
}
package com.jjoe64.graphview {
class style {
{static} + TextAppearance_Compat_Notification : int
{static} + TextAppearance_Compat_Notification_Info : int
{static} + TextAppearance_Compat_Notification_Info_Media : int
{static} + TextAppearance_Compat_Notification_Line2 : int
{static} + TextAppearance_Compat_Notification_Line2_Media : int
{static} + TextAppearance_Compat_Notification_Media : int
{static} + TextAppearance_Compat_Notification_Time : int
{static} + TextAppearance_Compat_Notification_Time_Media : int
{static} + TextAppearance_Compat_Notification_Title : int
{static} + TextAppearance_Compat_Notification_Title_Media : int
{static} + Widget_Compat_NotificationActionContainer : int
{static} + Widget_Compat_NotificationActionText : int
{static} + Widget_Support_CoordinatorLayout : int
- style()
}
}
package com.jjoe64.graphview {
class styleable {
{static} + CoordinatorLayout : int[]
{static} + CoordinatorLayout_keylines : int
{static} + CoordinatorLayout_statusBarBackground : int
{static} + CoordinatorLayout_Layout : int[]
{static} + CoordinatorLayout_Layout_android_layout_gravity : int
{static} + CoordinatorLayout_Layout_layout_anchor : int
{static} + CoordinatorLayout_Layout_layout_anchorGravity : int
{static} + CoordinatorLayout_Layout_layout_behavior : int
{static} + CoordinatorLayout_Layout_layout_dodgeInsetEdges : int
{static} + CoordinatorLayout_Layout_layout_insetEdge : int
{static} + CoordinatorLayout_Layout_layout_keyline : int
{static} + FontFamily : int[]
{static} + FontFamily_fontProviderAuthority : int
{static} + FontFamily_fontProviderCerts : int
{static} + FontFamily_fontProviderFetchStrategy : int
{static} + FontFamily_fontProviderFetchTimeout : int
{static} + FontFamily_fontProviderPackage : int
{static} + FontFamily_fontProviderQuery : int
{static} + FontFamilyFont : int[]
{static} + FontFamilyFont_android_font : int
{static} + FontFamilyFont_android_fontWeight : int
{static} + FontFamilyFont_android_fontStyle : int
{static} + FontFamilyFont_android_ttcIndex : int
{static} + FontFamilyFont_android_fontVariationSettings : int
{static} + FontFamilyFont_font : int
{static} + FontFamilyFont_fontStyle : int
{static} + FontFamilyFont_fontVariationSettings : int
{static} + FontFamilyFont_fontWeight : int
{static} + FontFamilyFont_ttcIndex : int
{static} + GraphViewXML : int[]
{static} + GraphViewXML_android_title : int
{static} + GraphViewXML_seriesColor : int
{static} + GraphViewXML_seriesData : int
{static} + GraphViewXML_seriesTitle : int
{static} + GraphViewXML_seriesType : int
- styleable()
}
}
R +-down- attr
R +-down- bool
R +-down- color
R +-down- dimen
R +-down- drawable
R +-down- id
R +-down- integer
R +-down- layout
R +-down- string
R +-down- style
R +-down- styleable
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 |
23472a27ea52046f85e70130c918a5ed25174dc7 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/billing/media/src/useCaseBill.puml | e8e6f1d958738d9061fe86fc0714614ba6e17345 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 1,139 | puml | @startuml
hide footbox
participant Buyer
entity "CustomerBill" as B
entity "CustomerBillItem" as BI
autonumber
activate B
activate BI
' Seller creates the CustomerBill
note over B: The Seller creates the CustomerBill.
B -> B: state: generated
BI -> BI: state: generated
B -> Buyer: POST /customerBillCreateEvent
' Add the initial state of BI
note over Buyer, B: The Buyer requests detailed information about a CustomerBill.
Buyer -> B : GET /customerBill/{{id}} request
B --> Buyer: GET /customerBill/{{id}} response
note over Buyer, BI: The Buyer requests detailed information about a CustomerBillItem based on a CustomerBillItem Identifier.
Buyer -> BI : GET /customerBillItem/{{id}} request
BI --> Buyer: GET /customerBillItem/{{id}} response
note over Buyer: The Buyer makes the payment.
BI -> BI: state: settled
note over BI: If all of the CustomerBillItem are **settled** then CustomerBill changes the state to **settled**.
BI --> B: (causes state change)
B -> B: state: settled
B -> Buyer: POST /customerBillStateChangeEvent
Buyer -> B : GET /customerBill/{{id}} request
B --> Buyer: GET /customerBill/{{id}} response
@enduml
| false | true | false | false | sequence |
35a1bec7d8fe07b0cb5ab85fd9d1a9549a6954e2 | 1e992cebb323e6f1bbddd1e23b6214f8806b7834 | /sip/CallForking/simple_call_forking_case_4_two_accept.puml | c40e6d3afb4d08d1aea64ba26e3c139acbe4f633 | [] | no_license | gongpengjun/code_diagrams | 006c66441ae26331d19a408912af01c84e1bd5f4 | 686a830f47e407ddc58e7f8003331ee4fca5975c | refs/heads/master | 2021-06-26T00:52:25.079556 | 2020-10-27T13:45:34 | 2020-10-27T13:45:34 | 166,416,838 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,909 | puml | @startuml
title call forking: TWO device ACCEPT flow
skinparam monochrome true
autonumber "F00 "
hide footbox
'skinparam BoxPadding 40
skinparam headerFontSize 14
header SIP-Forking-4
'box "caller"
participant "UAC" as Caller_UAC <<caller>>
'end box
'box "proxy"
participant "Proxy" as Proxy <<server>>
'end box
'box "callee"
participant "UAS 1" as Callee_UAS_1 <<callee>>
participant "UAS 2" as Callee_UAS_2 <<callee>>
participant "UAS 3" as Callee_UAS_3 <<callee>>
'end box
Caller_UAC -> Proxy: INVITE
Caller_UAC <- Proxy: 100
Proxy -> Callee_UAS_1: INVITE (to_tag:1)
Proxy <- Callee_UAS_1: 180 (to_tag:1)
Caller_UAC <- Proxy: 180 (to_tag:1)
Proxy -> Callee_UAS_2: INVITE (to_tag:2)
Proxy <- Callee_UAS_2: 180 (to_tag:2)
Caller_UAC <- Proxy: 180 (to_tag:2)
Proxy -> Callee_UAS_3: INVITE (to_tag:3)
Proxy <- Callee_UAS_3: 180 (to_tag:3)
Caller_UAC <- Proxy: 180 (to_tag:3)
note right of Caller_UAC: ignore to_tag in 1xx response
== callee user accept on two devices `UAS 1` and `UAS 2` simultaneously ==
Proxy <- Callee_UAS_1: 200 (to_tag:1)
Proxy <- Callee_UAS_2: 200 (to_tag:2)
note right of Proxy: 200 of UAS 1 arrive first, 200 of UAS 2 is ignored
Caller_UAC <- Proxy: 200 (to_tag:1)
Caller_UAC -> Proxy: ACK (to_tag:1)
Proxy -> Callee_UAS_1: ACK (to_tag:1)
note right of Proxy: cancel other INVITE transactions
|||
Proxy -> Callee_UAS_2: CANCEL (to_tag:2)
note right of Proxy: `UAS 2` has already sent final response 200
Proxy <- Callee_UAS_2: 481 (Transaction Does Not Exist) (to_tag:2)
note right of Proxy: send BYE to kick UAS 2 off
Proxy -> Callee_UAS_2: BYE (to_tag:2)
Proxy <- Callee_UAS_2: 200 (BYE) (to_tag:2)
|||
Proxy -> Callee_UAS_3: CANCEL (to_tag:3)
Proxy <- Callee_UAS_3: 200 (CANCEL) (to_tag:3)
Proxy <- Callee_UAS_3: 487 (INVITE) (to_tag:3)
Proxy -> Callee_UAS_3: ACK (487) (to_tag:3)
skinparam footerFontSize 14
footer https://tools.ietf.org/html/rfc3261#page-55
@enduml
| false | true | false | false | sequence |
f51e70234678ebbf2dd30b27d82eaf3c5d0f4248 | c76fe0e93a144d0b42d01346304c79cf6dff4d38 | /readme_files/cache_fallback_on_error.puml | d1b50154640ff7098bd223c777333bb5148b9525 | [
"Apache-2.0"
] | permissive | motorro/RxLceModel | b3e0ca3e10ad2dd773484f41674150f570ced847 | d6c0d456e23544982fed95dcd68c926005857ed6 | refs/heads/master | 2023-05-10T16:09:01.957578 | 2023-05-08T18:41:59 | 2023-05-08T18:41:59 | 172,682,449 | 7 | 0 | Apache-2.0 | 2023-01-31T15:35:40 | 2019-02-26T09:43:11 | Kotlin | UTF-8 | PlantUML | false | false | 845 | puml | @startuml
Actor Subscriber
Participant LceModel
Database CacheService
Entity OldValue
Participant NetService
== Subscribe to state changes ==
Subscriber -> LceModel: subscribe state
LceModel -> Subscriber: onNext(Loading(data = null))
== Subscribe to cache events ==
LceModel -> CacheService: subscribe getData(params)
LceModel <- OldValue: onNext(OldValue)
LceModel -> OldValue: isValid()
LceModel <-- OldValue: false
note right
Cache has some **stall** data.
Emit and refresh from network
end note
LceModel -> Subscriber: onNext(Loading(data = oldValue, type = REFRESHING))
== Try to retrieve data from network ==
LceModel -> NetService: get(params)
LceModel <-- NetService: Error
LceModel -> Subscriber: onNext(Error(data = oldValue))
note right
Old value is re-emitted along with error
to allow offline mode
end note
@enduml | false | true | false | false | usecase |
6fa984e52a4e99d05c10434bd173da280617a23b | e867f88f6533be07733b08b14a2559d4d2931460 | /use-cases/Population Reports UML.puml | 0b2da7c2f71c2aba698392dfbf23e3330d7b3dc3 | [
"Apache-2.0"
] | permissive | kaimainz/Group_G_Coursework | 1eace035bec8c8dece686c2f1f195adbf72a98b7 | 22d08cb9d598bc03f96178ebabbd293fd97d03a2 | refs/heads/master | 2020-04-17T23:19:15.398380 | 2019-04-30T12:41:35 | 2019-04-30T12:41:35 | 167,028,029 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 275 | puml | @startuml
actor President as "UN President"
rectangle database
rectangle "Reporting System" {
usecase UC4 as "Population Reports"
usecase UCd as "Display requested
Population Report"
President - UC4
UC4 ..> UCd : include
UC4 - database
@enduml | false | true | false | false | usecase |
37d11ad9ed527246839e0c59bf59f2b53df2e89d | 19bc9c3bc394a731bd46908339671ec42b610bab | /uml_diagrams/GUI.puml | 7306a8259ad20e22d29d8e26f5825ba6dc784012 | [
"MIT"
] | permissive | lordnodd/index_zero_trafficsystem | 434ae2593630cf2c0a20320d2380095a918a1abb | eea740965fbf4a0bb8e9e84dc14b38bd52b17319 | refs/heads/master | 2021-06-11T13:35:57.927145 | 2016-03-30T23:34:01 | 2016-03-30T23:34:01 | 178,351,371 | 0 | 0 | MIT | 2021-04-10T11:58:53 | 2019-03-29T07:05:42 | Java | UTF-8 | PlantUML | false | false | 684 | puml | @startuml
class GuiModel {
-listeners:ChangeListener[]
-image:BufferedImage
-tick:currentTick
-status:status
}
interface ChangeListener {
+onModelChanged()
}
GuiModel "1" o-> "*" ChangeListener
class GuiController {
-simulator
-simulatorThread
+start()
+stop()
+pause()
}
class Simulator {
}
GuiController --> Simulator: Thread, \ncreate,\ncommand
Simulator --> GuiController: Invoke tick() \nmethod on \nsimulation \nupdates
GuiController -> GuiModel: Update model state
class MainToolbar {
}
class MapPanel {
}
ChangeListener <|-- MainToolbar
ChangeListener <|-- MapPanel
MainToolbar <-- GuiModel
MapPanel <-- GuiModel
MainToolbar --> GuiController
@enduml | false | true | false | false | sequence |
98a60eba41b3a85290feb5018d5a9721ed8e7a80 | 25a8b51076b9482823a97f849b3ca62c30341b21 | /org/topdownfuntown.plantuml | 6ec969bc9577d0366975c8ebfcc8f176366b9c0b | [
"MIT"
] | permissive | pm96/TopdownFunTown | d13ec35b7cab490438275d93686252fe910f555c | 8d3b0c35472015d0755b350f066d12e94f59fe90 | refs/heads/master | 2020-04-24T08:13:55.654789 | 2019-01-29T21:16:53 | 2019-01-29T21:16:53 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,406 | plantuml | @startuml
skinparam classAttributeIconSize 0
title TopDownFunTown
package com.topdownfuntown{
package main{
class Topdownfuntown <<GameApplication>>{
Will only load and GameMap
..
-currentGameMap: GameMap
}
class GameManager{
-int:stage
-weapon: currentWeapon
}
}
package weapon{
abstract class Weapon{
}
}
package stages{
abstract class GameMap <<GameObject>>{
Will manage logic
..
~Player[]: players
~Enemies[]: enemies
~Blocks[]: obstacles
+draw(GraphicsContext gc):void
+update(double delta):void
}
class RoomX <<GameMap>>{
..
}
abstract class SafeRoom{
-SafeZone: zone
}
}
package objects{
class Player <<GameObject>>{
-double: speed
-int: health
+moveUp():void
+moveDown():void
+moveLeft():void
+moveRight():void
}
abstract class Enemy <<GameObject>>{
-int: dmg
-int: dmg_type
}
class Alien <<Enemy>>{
Do spooky shit
}
class Projectile <<GameObject>> {
-double: speed
-Vector2: direction
}
class SavePortal<<GameObject>>{
}
}
}
'' assoc
SafeRoom --|> GameMap
RoomX --|> GameMap
Alien --|> Enemy
Player -RIGHT- GameMap
Enemy --{ GameMap
Projectile --{ GameMap
Topdownfuntown -DOWN-{ GameMap
@enduml | false | true | false | false | class |
3ccc5c726896acc457f5e63d17a95495469ed411 | d765e68ed6715429becb71ef608081b888e3c1f4 | /app/src/androidTest/java/com/apps/jivory/googlemaps/googlemaps.plantuml | c6e3c79b18345bf4af34e0326813af027ba73d4a | [
"MIT"
] | permissive | jaredaivory/CSE248FinalProjectAndroidApp | 7e731022b86a6761648410f1a15b5e6a11706f03 | 732ed2f501b42f253b2955a46d15753f4c4d43ae | refs/heads/master | 2023-04-06T21:28:33.469252 | 2018-12-17T19:00:45 | 2018-12-17T19:00:45 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 365 | plantuml | @startuml
title __GOOGLEMAPS's Class Diagram__\n
package com.apps.jivory.googlemaps {
class ExampleInstrumentedTest {
+ useAppContext()
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
6b31a46e56f2b9576b60ec54211dc0bfadd7baa3 | d14e7535380d9cb8c72925866c0fdd6ad1b1b8d7 | /spring-data-jpa-examples/img/classes.puml | 5f0f86a5ab2a2885c586fa7da63142c604034e1e | [
"Apache-2.0"
] | permissive | zinoviosDev/spring-data-examples | 1b3d5ca44dc3897cfd893e45a260a440980ffa27 | c64e12a8a54ac6825c73daee9f468ea697026a52 | refs/heads/master | 2023-08-02T15:30:37.868910 | 2021-05-04T12:07:01 | 2021-05-04T12:07:01 | 408,793,373 | 0 | 0 | Apache-2.0 | 2021-09-21T11:29:49 | 2021-09-21T11:29:40 | null | UTF-8 | PlantUML | false | false | 2,422 | puml | @startuml
abstract class AbstractBook
AbstractBook <|-- Book
AbstractBook <|-- BookWithFetchModeJoin
AbstractBook <|-- BookWithFetchModeSelect
AbstractBook <|-- BookWithFetchModeSubselect
AbstractBook <|-- BookWithBatchSize
Book o-- Author
BookWithFetchModeJoin o-- Author
BookWithFetchModeSelect o-- Author
BookWithFetchModeSubselect o-- Author
BookWithBatchSize o-- Author
BookWithMultipleBags o-- Author
Book o-- Category
BookWithFetchModeJoin o-- Category
BookWithFetchModeSelect o-- Category
BookWithFetchModeSubselect o-- Category
BookWithBatchSize o-- Category
BookWithMultipleBags o-- Category
Book o--- BookRating
abstract class AbstractBook {
-id : Long
-isbn : String
-title : String
-publicationDate : LocalDate
{abstract} +List<Author> getAuthors()
{abstract} +setAuthors(List<Author> authors)
{abstract} +Set<Category> getCategories()
{abstract} +setCategories(Set<Category> categories)
}
class Author {
-id : Long
-fullName : String
}
class Category {
-id : Long
-name : String
}
class Book {
-authors : List<Author>
-categories : Set<Category>
}
class BookWithFetchModeJoin {
-authors : List<Author>
-categories : Set<Category>
}
class BookWithFetchModeSelect {
-authors : List<Author>
-categories : Set<Category>
}
class BookWithFetchModeSubselect {
-authors : List<Author>
-categories : Set<Category>
}
class BookWithBatchSize {
-authors : List<Author>
-categories : Set<Category>
}
class BookWithMultipleBags {
-id : Long
-isbn : String
-title : String
-publicationDate : LocalDate
-authors : List<Author>
-categories : List<Category>
}
class BookRating {
-id : Long
-version : int
-book : Book
-rating : BigDecimal
-numberOfRatings : int
}
note top of AbstractBook : @MappedSuperclass
note top of Book : No explicit FetchMode
note top of BookWithFetchModeJoin : @Fetch(JOIN)
note top of BookWithFetchModeSelect : @Fetch(SELECT)
note top of BookWithFetchModeSubselect : @Fetch(SUBSELECT)
note top of BookWithBatchSize : @BatchSize(size = 2)
note top of BookWithMultipleBags : MultipleBagFetchException:\ncannot simultaneously fetch multiple bags
note "@ManyToMany(fetch = EAGER) authors\n@ManyToMany(fetch = LAZY) categories" as FetchType
Book ... FetchType
BookWithFetchModeJoin ... FetchType
BookWithFetchModeSelect ... FetchType
BookWithFetchModeSubselect ... FetchType
BookWithBatchSize ... FetchType
BookWithMultipleBags ... FetchType
note top of BookRating : @Version
@enduml | false | true | false | false | class |
3125ba31ce45f60528bfdb4554e5a99aac87f48d | 7b13715b0b972ea52b88ad8097cc8cb7b41f2bb1 | /Rendu/doc/javadoc/ch/tofind/commusica/utils/Configuration.puml | a3da1eeb50aeb3cfac4db92e1215fefd1ceaf3c2 | [] | no_license | heig-vd-pro2017/projet | 8f6e9bb5cc75baaf809eda87b31d7de8c632f713 | db1e7ff720076eea9efe2c4fc8bcad97d80ca2f1 | refs/heads/master | 2021-01-16T23:21:13.159819 | 2017-05-29T17:32:48 | 2017-05-29T17:32:48 | 82,906,602 | 5 | 2 | null | 2017-04-02T16:05:43 | 2017-02-23T08:55:46 | Java | UTF-8 | PlantUML | false | false | 304 | puml | @startuml
class Configuration {
[[Configuration.html]]
{static} -LOG: Logger
{static} -CONFIG_FILE: String
{static} -instance: Configuration
-configuration: Properties
{static} +getInstance(): Configuration
+get(String): String
}
@enduml
| false | true | false | false | class |
be59c3c46430e6fe845585454b3f5ae3e7e91222 | cacaa870320bc9a6a40d96bcd39b9cefe8173e57 | /UML/SequenceDiagram/Agent_odmowa.puml | 3bae19fb95334ba3fb2d451b928824c9f9b18488 | [] | no_license | MINI-IO/IO-project-game | efc8a9a38918cee11778e94d48c1a05c1ccca59f | 8b4c8f2b0f00cdc301e24b2930d01685fbd72b0e | refs/heads/master | 2022-04-18T10:09:55.575034 | 2020-04-02T18:08:11 | 2020-04-02T18:13:39 | 216,227,976 | 12 | 6 | null | 2020-04-02T17:58:00 | 2019-10-19T15:29:31 | TeX | UTF-8 | PlantUML | false | false | 437 | puml | @startuml
skinparam shadowing false
skinparam monochrome true
skinparam sequenceGroupBorderThickness 0.5
actor Agent
participant "Serwer Komunikacyjny" as sk
participant "Game Master" as gm
activate Agent
Agent -> sk: dolaczDoRozgrywki()
activate sk
sk ->> gm: dolaczAgentaDoRozgrywki()
activate gm
gm -->> sk: odmowaDolaczenia()
deactivate gm
sk -->> Agent: odmowaDolaczenia()
deactivate sk
deactivate Agent
@enduml | false | true | false | false | sequence |
6c0f63f262a1e91ce43aca6acb839648c832175b | 8ea4e975bbbc471c2c87d90ef9e35dd0aaaa6c36 | /images/SafeIsland_CredentialIssuance.puml | ca2db46fe614d245181b8dfab5dcff9553a3bffe | [] | no_license | kemalbehram/SafeIsland | 1cf816ad9b11fb5726f551c12dc2d3bb4bdb5ac2 | 8a7a88e28faebc0b411c0146658b911effcd7a79 | refs/heads/main | 2023-03-23T19:29:20.464096 | 2021-03-19T17:20:20 | 2021-03-19T17:20:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,138 | puml | @startuml SafeIsland_CredentialIssuance
autonumber
skinparam sequenceArrowThickness 3
skinparam roundcorner 10
skinparam maxmessagesize 300
box "Issuer" #f1f9ff
actor "Operator\nwith\nmobile" as OP
database "Issuer\nbackend" as IS
end box
box "Citizen" #f1f9ff
actor "Citizen\nwith\nmobile" as CI
end box
box "Trust Framework" #f1f9ff
participant "Universal\nResolver" as UR
end box
== Obtain Informed Consent from Citizen ==
CI -[#0000FF]-> OP: Provide Informed Consent
note right: Citizen is informed\nthat will provide\npersonal data
OP -[#0000FF]-> CI: Physical identification of Citizen
== Credential generation ==
OP -> IS: Enter Citizen data
OP -> IS: Enter Credential data
OP -> IS: Generate & Save Credential
OP -> OP: Display Credential QR
== Citizen receives Credential ==
CI -> CI: Opens QR scanner
OP -[#0000FF]-> CI: Scan Credential QR
note right: QR contains URL\nto obtain Credential data
CI -> IS: Request full Credential
activate IS
return Receive Credential data
== Verification of Credential ==
CI -> CI: Verify Credential
CI -> UR: Verify signature of Credential
CI -> CI: Save Credential
@enduml
| false | true | false | false | sequence |
99f5f9cce745905adac96d0c1e5f2ae62dfb7dd9 | bb209a68f1d9336a28270a7afbdcb899c91918df | /p15_composite/composite.puml | ab1b8f59835655eae23aebfd73390308686dad9b | [] | no_license | CrazyBilipala/Design-Patterns-2019 | 25376e46641cff4a200b6d594e10b866b182d7b2 | 17512c6e0e1286e218f139c2ca3fceeeba92e38e | refs/heads/master | 2020-07-14T14:42:01.329685 | 2019-08-30T08:24:26 | 2019-08-30T08:24:26 | 205,336,482 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 220 | puml | @startuml
interface Tree {
add(tree: Tree):void
remove(tree: Tree):void
operate(any:any):void
}
class Branch{
- trees: List<Tree>
}
class Leaf
Tree <|.. Branch
Tree <|.. Leaf
Branch o--> Tree
@enduml | false | true | false | false | class |
e713ae68234caa3afb7990661a7586a8da3a09e5 | c2b83ffbeb0748d1b283e093f0b987bdbc3d27ac | /docs/uml-class-diagrams/admin/test/GpsSystemTests/GpsSystemTests.puml | 5e9c25e853befcc54326684ad65a6702615ac163 | [] | no_license | Slackjaw1431/csi-3370-software-project | 79666760712ee4625bea3daea48c7072e7826465 | af44ad1066695e4f9eff74eda79cebef3ad2b1af | refs/heads/main | 2023-03-23T23:03:17.404846 | 2021-03-17T18:52:02 | 2021-03-17T18:52:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 619 | puml | @startuml GpsSystemTests
package edu.oakland.test.admin {
class GpsSystemTests {
+ void initDisplayGPSInterfaceNotNull()
+ void initSatelliteNamesNotNull()
+ void initSatelliteNamesNotEmpty()
+ void initEachSatelliteNameNotEmpty()
+ void gpsSystemsConstructedSuccessfully()
+ void uC1ScannerNotNull()
+ void uC2ScannerNotNull()
+ void initLocationDataPointNotNull()
+ void configureSatellitesRunSuccessfully()
- String generateRandomNames()
- LocationDataPoint makeRandomLDP()
- float makeRandomPos()
}
}
@enduml
| false | true | false | false | class |
39bd5579146000480130c34e2472469d9302cf3c | e3ca50f61df42221c54096010e442a50deb7a8ed | /docs/uml/ranking.puml | 1331af458bd930beff18c1ce98257eaed6d5ab62 | [] | no_license | devDzign/sf52-ddd-code-challenge | 53993145f76a9c916253aedc2d480ed6809d0e89 | 61cd47f1b710516d492a41f763d6f2277d26e058 | refs/heads/master | 2023-03-29T03:53:26.461298 | 2021-03-31T03:22:18 | 2021-03-31T03:22:18 | 352,826,175 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 367 | puml | @startuml
left to right direction
skinparam packageStyle rectangle
actor Utilisateur
database Database
rectangle "Classement" {
Utilisateur -- (Visualiser la liste des\nutilisateurs classés par point)
(Rang) .> (Visualiser la liste des\nutilisateurs classés par point) : include
(Visualiser la liste des\nutilisateurs classés par point) -- Database
}
@enduml | false | true | true | false | usecase |
83cabf776ddbb18e54ac98e58cfbb4e8c9fa038f | eb83d9f3bd50c687c48810ac0654ec0e2315a0ff | /sysl2/sysl/tests/without_passthrough-golden.puml | 0616503d234fd87e09b0599aeeafa3a761ac5608 | [
"Apache-2.0"
] | permissive | anz-bank/sysl-legacy | 1505d794719011932ec298381bb5334b84d0d98a | 5831389caa377c607812cb73176b2ae7b686cf3c | refs/heads/master | 2021-06-19T08:04:53.160044 | 2019-11-27T00:00:46 | 2019-11-27T00:00:46 | 215,662,592 | 2 | 1 | Apache-2.0 | 2021-06-02T00:31:47 | 2019-10-16T23:29:10 | Go | UTF-8 | PlantUML | false | false | 432 | puml | ''''''''''''''''''''''''''''''''''''''''''
'' ''
'' AUTOGENERATED CODE -- DO NOT EDIT! ''
'' ''
''''''''''''''''''''''''''''''''''''''''''
@startuml
hide stereotype
scale max 16384 height
skinparam component {
BackgroundColor FloralWhite
BorderColor Black
ArrowColor Crimson
}
[IntegratedSystem] as _0 <<highlight>>
[Systema] as _1
_0 --> _1
@enduml | false | true | false | false | uml-unknown |
86aa24c24d5506439572fca7f0896ae504f71e55 | 0a31283657cdb7a86cfc867574a587cc3b7809e6 | /Creational/Singleton/uml/Singleton.puml | dfbbdde89a3b7214395fff018285158e72d85f4a | [] | no_license | rcj654020445/moshi | 96e42eff679036227faf9a60d2f5e92cfd05e616 | 71c329483f8270b09e91332cafdfdc0bb5bb8301 | refs/heads/master | 2021-01-19T02:27:12.290525 | 2017-04-28T10:29:50 | 2017-04-28T10:29:50 | 87,278,626 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 149 | puml | @startuml
class Singleton{
# {static} $instance;
# __construct();
+ {static}getInstance();
# __clone();
# __wakeup();
}
@enduml | false | true | false | false | class |
07f2580eeeca93d887ecc1e69a6046cf3925bdf5 | 462b9598f08a48ab835f0b189d4d344560965227 | /src/main/java/csheets/worklog/n1120013/sprint3/ipc05_02_analysis_chatParticipants_disconect_ser.puml | 7ff77786b36e22f30380aa32b0ba1f62aab8f592 | [] | no_license | VitorMascarenhas/LAPR4-2016 | 19f5593b98b81763f77021fb04278ed231337028 | e53a5a46c0e09fbc155fb91f2010d50532de85d2 | refs/heads/master | 2020-03-19T10:31:05.321699 | 2018-06-06T19:49:19 | 2018-06-06T19:49:19 | 136,027,190 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 432 | puml | @startuml doc-files/ipc05_02_analysis_chatParticipants_disconect_ser.png
actor User as u
participant "<<analysis>>\nSendChatParticipantsUI" as UI
participant "<<analysis>>\ndataBase" as DB
participant "<<analysis>>\nSendChatParticipantsCtrl" as ctrl
participant "<<analysis>>\nConnectionManager" as conMgr
conMgr -> ctrl : receiveGoodbyeMessage()
ctrl -> DB : setuseroffline()
ctrl -> UI : setuseroffline()
@enduml | false | true | false | false | sequence |
30fd70464b97b573c74650fcf72b521f0c1e5edd | 18d98b498ddef6f6c8d5a1d8cb12e3bffb9a4523 | /mastermind.plantuml | 0e53ff5604ae10ea29afd69b5be0f68587f961f7 | [] | no_license | vfred0/mastermind | 6aad821353cf97b967db4ebec2dc4c5923b53c54 | b1490f82f236737f7343494c411696bda4c14196 | refs/heads/main | 2023-06-09T17:40:41.425042 | 2021-06-25T17:06:07 | 2021-06-25T17:06:07 | 380,301,481 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,553 | plantuml | @startuml mastermind
class Mastermind {
- game: Game
- view: View
+ play():void
}
class Game {
- secret: SecretCombination
- proposed: ProposedCombination[]
- attemps: int
- MAX_ATTEMPS: int
+ reset(): void
+ init(): void
+ getAttemps(): int
+ getPropesedCombination(int i): ProposedCombination
+ add(List<Color> colors): void
+ getResult(int i): Result
+ incremetAttemp(): void
+ finished(): boolean
+ isWinner(): boolean
}
class Combination {
# {static} WIDTH: int
# colors:List<Color>
# haveColorsRepeat(String input): boolean
# setColors(String input): void
# charAt(String input, int i): String
+ {static} getCodeColors: String
}
class ProposedCombination {
- isValid(String characters): boolean
+ getColors(): List<Color>
+ setColors(List<Color> colors): void
}
class SecretCombination {
+ equals(Combination proposed): boolean
+ getResult(Comnination proposed): Result
}
class Result {
- int whites
- int blacks
+ Result(Combination proposed, Combination secret)
+ getWhites(): int
+ getBlacks(): int
}
enum Message{
TITTLE
ATTEMPS
RESULT
PROPOSED
SECRET
WON
LOOSE
}
enum Color{
Red
Blue
Yellow
Green
Orange
Purple
+ {static} getAll():List<Color>
+ {static} get(int i): Color
+ {static} getInitial(): String
+ {static} getAllInitials(List<Color> colors): String
+ {static} get(String characters): List<Color>
+ {static} String getAllInitials()
+ {static} charAt(String characters, int i): String
}
enum Error {
REPEATED COLOR LENGTH NULL
exists(): boolean
getOrdinal(): int
}
class ErrorView {
- messages: String[]
+ ErrorView(Error error)
}
class GameView{
- write(Game game): void
}
class MessageView{
- messages: String[]
+ MessageView(Message message)
- getOrdinal(Message message): String
+ writeln(Message message: void
+ writeln(Message message, int attemp): void
+ writeln(Message message, int blacks, int whites): void
+ write(Message message): void
}
class PlayView {
+ PlayView(Game game)
+ play(): void
}
class ProposedCombinationView {
ProposedCombinationView(ProposedCombination propesedCombination)
+ read(Game game): List<Color>
}
class ResumeView{
ResumeView(Game game)
+ proceed(): boolean
}
class StartView{
StartView(Game game)
start(): void
}
abstract class View{
+ interact(Controller controller): void
}
class YesNoDialog{
- exit: boolean
YesNoDialog(Message resume)
+ isExit(): boolean
}
class ConsoleView {
- StartView startView
- PlayView playView
- ResumeView resumeView
+ interact(Controller controller): void
+ visit(StartController controller): void
+ visit(PlayController controller): void
+ visit(ResumeController controller): void
+ visit(ElectionWidthCombinationController controller): void
}
abstract class Controller {
# state: State
# game: Game
Controller(State state, Game game)
{abstract} void accept(ControllerVisitor controllerVisitor)
+ next(): void
}
class ResumeController {
+ reset(): void
}
class StartController {
}
class PlayController {
- secret: SecretCombination
- proposed: ProposedCombination[]
- attemps: int
- MAX_ATTEMPS: int
+ reset(): void
+ init(): void
+ getAttemps(): int
+ getPropesedCombination(int i): ProposedCombination
+ add(List<Color> colors): void
+ getResult(int i): Result
+ incremetAttemp(): void
+ finished(): boolean
+ isWinner(): boolean
}
class Logic {
- state: State
- game: Game
- startController: StartController
- playController: PlayController
- resumeController: ResumeController
+ geController(): Controller
}
interface ControllerVisitor {
visit(StartController controller): void
visit(PlayController controller): void
visit(ResumeController controller): void
visit(ElectionWidthCombinationController controller): void
}
Mastermind *--> Logic
Mastermind *--> View
Mastermind ..> Controller
View <|-- ConsoleView
ConsoleView *--> StartView
ConsoleView *--> PlayView
ConsoleView *--> ResumeView
StartView ..> MessageView
StartView ..> GameView
StartView ..> StartController
PlayView ..> ProposedCombinationView
PlayView ..> MessageView
PlayView ..> GameView
PlayView ..> Message
PlayView ..> PlayController
ResumeView ..> YesNoDialog
ResumeView ..> Message
ResumeView ..> ResumeController
YesNoDialog ..> MessageView
YesNoDialog ..> Message
ProposedCombinationView --> Game
ProposedCombinationView ..> MessageView
ProposedCombinationView ..> ErrorView
ProposedCombinationView ..> Color
ProposedCombinationView ..> Error
ProposedCombinationView ..> Message
MessageView ..> Message
MessageView ..> Console
ProposedCombinationView ..> Console
YesNoDialog ..> Console
ErrorView ..> Console
ErrorView ..> Error
Game *--> SecretCombination
Game *--> ProposedCombination
Game ..> Color
Game ..> Error
Combination *--> Color
Combination <|-- SecretCombination
Combination <|-- ProposedCombination
Result ..> Color
Result ..> Combination
SecretCombination ..> Result
SecretCombination ..> Color
ProposedCombination ..> Color
Controller <|-- PlayController
Controller <|-- StartController
Controller <|-- ResumeController
Logic *--> PlayController
Logic *--> StartController
Logic *--> ResumeController
ControllerVisitor <|-- View
Controller ..> ControllerVisitor
PlayController <.. ControllerVisitor
StartController <.. ControllerVisitor
ResumeController <.. ControllerVisitor
PlayController <.. ConsoleView
StartController <.. ConsoleView
ResumeController <..ConsoleView
@enduml | false | true | false | false | class |
f0d9fc152657d548b26dad805b5f705107d71848 | c2642c8fb579d24c00b312b47578384894d63166 | /spring-security/UML/TokenStoreClass.puml | 51ad3e8ec9956cce853c1b6a183e33530c9a79e4 | [
"Apache-2.0"
] | permissive | scheno/phoenix | cf49867a41f0c703841d110d8c9525975085458e | bf5094e67b0d4341e2ca950829c7cc0efe9f7ae1 | refs/heads/master | 2023-01-02T03:32:29.504135 | 2020-10-22T14:42:45 | 2020-10-22T14:42:45 | 274,306,131 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 247 | puml | @startuml
interface TokenStore
class InMemoryTokenStore
class JwtTokenStore
class RedisTokenStore
TokenStore <|-- InMemoryTokenStore
TokenStore <|-- JwtTokenStore
TokenStore <|-- RedisTokenStore
interface AuthorizationServerConfigurer
@enduml | false | true | false | false | class |
99a6d42accb172b3d2040748ac70b524b84d49ff | 66189c5ec1fd3d87a5db4f281fb8eee547b62011 | /com/zx/uml/composition/composition.puml | 9ed56288fad4e36762dad0596e79d72e8c3d1e08 | [] | no_license | Jcduhdt/DesignPattern | 27168347a85ab79a0976d2ef3ce6e8687bd01ddd | 501635e4eebba510ae3d1bb26ebfdaccf76beb8c | refs/heads/master | 2021-02-17T20:03:58.951599 | 2020-03-15T08:34:11 | 2020-03-15T08:34:11 | 245,124,068 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 129 | puml | @startuml
class Mouse
class Moniter
class Computer{
mouse:Mouse
moniter Moniter
}
Computer *-- Moniter
Computer *-- Mouse
@enduml | false | true | false | false | class |
89b3ca629eb1a6cafc788e3508999b465da93d72 | 8452043d61819f0b7ee785740699d86d0b518d00 | /assets/larman/F22.1.puml | 1313127f68efc0d7e8dd8610fd423c820b542f3f | [] | no_license | arielsashcov/LOG210-exercices | 30b4f560d40ad4e97fb859b39c8a79f9e69faa02 | ff0662106974aa5b93faa0c818218d4af561bbd5 | refs/heads/master | 2023-02-19T21:22:51.983498 | 2021-01-21T18:21:00 | 2021-01-21T18:21:00 | 331,715,420 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 457 | puml | @startuml F22.1-adapter
skinparam style strictuml
skinparam BackgroundColor transparent
class "IAdaptateurCalculateurTaxes" as IAC <<interface>> {
getTaxes(Vente) : Liste<TaxesLignesArticles>
}
class AdaptateurTaxMaster implements IAC {
getTaxes(Vente) : Liste<TaxesLignesArticles>
}
class AdaptateurGoodAsGoldTaxPro implements IAC {
getTaxes(Vente) : Liste<TaxesLignesArticles>
}
class Adaptateur??? implements IAC {
...
...()
}
@enduml | false | true | false | false | class |
d7d98b1babb1c594b5eb021fafe7928e045c9559 | 426c9b9b2ccb9a4ff7f797065b0ec3999ee66629 | /chapter5/capsule.puml | f28a33a0dfc6410bda2b22edfd9e8961988409d9 | [] | no_license | kyamashiro/head-first-ooad | 0f19da87a694cb47b6d6725049201b14afe1985f | cef1319789ce7225d1e97f51f94b29ccefaeff8b | refs/heads/master | 2020-05-09T12:09:08.686383 | 2019-08-25T09:05:54 | 2019-08-25T09:05:54 | 181,103,279 | 1 | 0 | null | 2019-08-15T09:58:19 | 2019-04-13T00:59:13 | PHP | UTF-8 | PlantUML | false | false | 381 | puml | @startuml
Painter -right-> PaintStyle
PaintStyle .-|>ModernPaintStyle
PaintStyle .-|>SurrealPaintStyle
PaintStyle .-|>CubistPaintStyle
class Painter {
prepareEasel()
cleanBrushes()
setPaintStyle(PaintStyle)
}
Interface PaintStyle {
getStyle():string
paint()
}
class ModernPaintStyle {
paint()
}
class CubistPaintStyle {
paint()
}
class SurrealPaintStyle {
paint()
}
@enduml
| false | true | false | false | class |
b0df5c93c5c9c0a3c1ac47650e4aef4fb863fc7d | ff8b4b0462ff47b8ad3a1047b2a05029624b1f16 | /Diagramms/StateDiagrammeAdminUpdateSeller.puml | 1412439c684a5a8d351322d44119218a8b77dd04 | [] | no_license | aymericCOUPRIE/Mercat | 2506ef17081effa7e7efff990af2f7cbc4743ac6 | ca22ada502684b3a359882aefa30859bac6fd0ad | refs/heads/master | 2023-02-23T04:27:43.524935 | 2021-01-12T13:29:52 | 2021-01-12T13:29:52 | 317,266,550 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,118 | puml | @startuml
autonumber
activate HandleSellerUI
HandleSellerUI -> HandleSellerController : updateSeller(pseudo:String)
deactivate HandleSellerUI
activate HandleSellerController
HandleSellerController --> router.Router : getInstance.activate("Update Seller Prodile")
deactivate HandleSellerController
activate router.Router
router.Router --> UpdateSellerProfileUI
deactivate router.Router
activate UpdateSellerProfileUI
UpdateSellerProfileUI -> UpdateSellerProfileController : updateSeller(seller : Seller)
deactivate UpdateSellerProfileUI
activate UpdateSellerProfileController
UpdateSellerProfileController -> UserFacade : updateSeller(seller : Seller)
deactivate UpdateSellerProfileController
activate UserFacade
UserFacade -> UserDAOMySQL : updateSeller(seller : Seller)
deactivate UserFacade
activate UserDAOMySQL
UserDAOMySQL -> MySQLConnection : createStatement()
deactivate UserDAOMySQL
activate MySQLConnection
MySQLConnection --> UserDAOMySQL : true
deactivate MySQLConnection
activate UserDAOMySQL
UserDAOMySQL -> Seller : setInfoSeller(seller: Seller)
deactivate UserDAOMySQL
activate Seller
@enduml | false | true | false | false | sequence |
1c32c6821b36ff8c5858b514947e609684c10e14 | 68e2259203dc087941c5f3b2cc49ac7c0afb7daf | /uml_diagramms/test_object.puml | 9dfec0e24cd19a5b040478c0be47ffe9f3ae716f | [] | no_license | andrewdarvell/geek_brains_java | c9bf1546e6bc06ea2e5787288662fc6636802e6e | 5e933e46618dffc2a1c5e9158909a2cb91b35526 | refs/heads/master | 2023-03-18T06:59:38.636365 | 2021-03-09T17:54:00 | 2021-03-09T17:54:00 | 333,704,775 | 0 | 0 | null | 2021-03-09T17:51:56 | 2021-01-28T09:12:15 | null | UTF-8 | PlantUML | false | false | 246 | puml | @startuml
'https://plantuml.com/object-diagram
object London
object Washington
object Berlin
object NewYork
map CapitalCity {
UK *-> London
USA *--> Washington
Germany *---> Berlin
}
NewYork --> CapitalCity::USA
@enduml
| false | true | false | false | sequence |
4bbc5ba7de6ae742b26b87330c28163659ede014 | b6ef874704b2d26f7d1ed4838f68f7735d84dc93 | /docs/uml-diagrams/TimetableLoad.puml | adb95583aa6d57295a4a969fce39f09f9261dca4 | [] | no_license | AY2122S1-CS2113T-W12-2/tp | 1494ecfe347d8733e1041085cff7ff4efe2b7739 | 47addc59a00bf047e96c84218a229c0faf0b0876 | refs/heads/master | 2023-08-26T04:02:15.336551 | 2021-11-11T04:31:02 | 2021-11-11T04:31:02 | 408,789,383 | 2 | 3 | null | 2021-11-10T14:26:41 | 2021-09-21T11:15:45 | Java | UTF-8 | PlantUML | false | false | 1,133 | puml | @startuml
[-> TimetableStorage : loadSchedule()
activate TimetableStorage
TimetableStorage -> FileReader**
activate FileReader
FileReader --> TimetableStorage
deactivate FileReader
alt Save File Exists
TimetableStorage -> Gson**
activate Gson
Gson --> TimetableStorage
deactivate Gson
TimetableStorage -> Gson : fromJson(fileReader)
activate Gson
Gson -> TimetableDto**
activate TimetableDto
TimetableDto --> Gson
deactivate TimetableDto
Gson --> TimetableStorage
deactivate Gson
destroy Gson
opt TimetableDto null
TimetableStorage -> Timetable**
activate Timetable
Timetable --> TimetableStorage
deactivate Timetable
end
TimetableDto -> Timetable** : toTimetable()
activate Timetable
Timetable --> TimetableStorage
deactivate Timetable
destroy TimetableDto
else FileNotFoundException
destroy FileReader
TimetableStorage -> Timetable**
activate Timetable
Timetable --> TimetableStorage
deactivate Timetable
end
<-- TimetableStorage
deactivate TimetableStorage
@enduml | false | true | false | false | sequence |
5c4663ce76d3e3c17027c95d0ab217cee756055a | 831e34223751ba984839b477e9334a7316b044af | /docs/diagramas/diagramas de clase/CartaYEstadoCarta.puml | 0529c0582597c358a9cd2dbe2254ec9d4512d39d | [
"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 | 1,070 | puml | @startuml
title Carta y EstadoCarta
hide empty members
class Carta {
- pais: Pais;
- simbolo: String;
+ {static} Carta(pais, simbolo): Carta
+ {static} canjeables(carta1: Carta, carta2: Carta, carta3: Carta): boolean
- canjearConIguales(carta1: Carta, carta2: Carta): boolean
- simbolosIguales(simboloCarta: String): boolean
- canjearConDiferentes(carta1: Carta, carta2: Carta): boolean
- simbolosDiferentes(simboloCarta: String): boolean
- esComodin(): boolean
+ activarse(): void
}
Carta "1" --> "1" EstadoCarta
EstadoCarta ..> Jugador
interface EstadoCarta {
+ activarse(jugador, pais: Pais): EstadoCarta
}
CartaActivada ..|> EstadoCarta
class CartaActivada {
+ activarse(jugador, pais: Pais): CartaYaActivadaException
}
CartaNoActivada ..|> EstadoCarta
Jugador "1" --> "*" Carta
class Jugador {
+ darleCarta(carta): void
+ activarCarta(carta): void
- devolverCartasAlMazo(carta1, carta2, carta3, mazo: ArrayList): void
- canjearCartas(carta1, carta2, carta3, mazo: ArrayList): int
}
@enduml | false | true | false | false | class |
e2190f09333c6bdc1014e5bdbb9c3bbd38d86877 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartSetShippingMethodAction.puml | 7c9135d6a19b0c4332542898d2257135a44ff0ad | [] | 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 | 585 | 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 CartSetShippingMethodAction [[CartSetShippingMethodAction.svg]] extends CartUpdateAction {
action: String
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
f674069a918991c1b13f4fe0f7c92bad765430e4 | 68664e1c3bace54dae358d5ed4ea1be5cfaa0f7f | /MergedApp/app/src/main/java/com/zafB/PhoToDo/exam soft eng.puml | 2cb2ae981eaf914e470da4e5647a24ede7ce6b1b | [] | no_license | khizar345/MergedApp-khizar | a7fdf696b9de2085846f60915331800b01be52bc | 5d7b23cfb326e523c025f3a03090f01c41e22d32 | refs/heads/master | 2022-08-30T06:15:20.990446 | 2022-08-09T11:03:36 | 2022-08-09T11:03:36 | 56,225,976 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 420 | puml | @startuml
left to right direction
:Customer: as cust
usecase "Make a reservation" as UC1
usecase "Pay for order" as UC2
usecase "Make an order" as UC3
usecase "Ask a question about menu" as UC4
usecase UC5 as "Get answer"
usecase "View menu" as UC6
usecase UC7 as "Make a special
dietary request"
cust -- UC1
UC3 ..> UC2 :include
cust -- UC3
UC3 ..> UC7 :include
cust -- UC4
UC4 ..> UC5 :include
cust -- UC6
@enduml | false | true | false | false | usecase |
b3087b3de6ca86b5b54a392cbeaaff1415e0a0aa | d6ca810d2ec991d97c1bc8581ed06763c57641ce | /development/felica/TestCords/FericaReader/plantuml/include.puml | ed2698094fbd833bc4cf599aa5f52338d029aca8 | [] | no_license | miyashita-atsushi/team_a | c847d571c5a522339ee0c3ac2c5ee0cb0753411b | 3cfec172375aafeef64c40a575dddde64f0a8ed3 | refs/heads/master | 2023-02-25T07:39:36.010130 | 2020-05-29T09:12:57 | 2020-05-29T09:12:57 | 254,561,813 | 0 | 1 | null | 2021-01-29T20:47:18 | 2020-04-10T06:33:38 | C# | UTF-8 | PlantUML | false | false | 6,062 | puml | @startuml
class App <<partial>> {
}
Application <|-- App
class GraphView {
+ Init() : void
+ CreateGraph(results:List<CsvCalcResults>) : void
}
class CalcResultGraph {
+ CalcResultGraph()
+ CalcResultGraph(results:List<CsvCalcResults>)
}
class "ObservableCollection`1"<T> {
}
GraphView o-> "Model" PlotModel
GraphView o-> "Controller" PlotController
GraphView --> "CsvCalcResultGraph" CalcResultGraph
GraphView +-- CalcResultGraph
CalcResultGraph --> "Results<CsvCalcResults>" "ObservableCollection`1"
class Log4netManager {
+ {static} GetInstance() : Log4netManager
+ LevelSet() : void
+ ReadConfig() : void
}
Log4netManager --> "logger" ILog
class WindowManager {
+ ReadFelcia(felica:Felica, iCCardType:string) : void
+ SearchProcesses() : List<string>
}
class "List`1"<T> {
}
WindowManager o-> "Instance" WindowManager
WindowManager o-> "HistoryList<ICCard>" "List`1"
abstract class ICCard {
+ Date : string <<get>> <<set>>
+ Terminal : string <<get>> <<set>>
+ Process : string <<get>> <<set>>
+ Payment : int <<get>> <<set>>
+ Deposit : int <<get>> <<set>>
+ Balance : int <<get>> <<set>>
+ InStationName : string <<get>> <<set>>
+ OutStationName : string <<get>> <<set>>
+ IDm : string <<get>> <<set>>
+ TransactionID : string <<get>> <<set>>
+ Value : int <<set>>
+ <<virtual>> AnalyzeTransaction(data:byte[]) : void
+ <<virtual>> AnaryzeDateTime(date:int) : string
}
class Suica {
+ <<const>> SERVICE_SUICA_INOUT : int = 0x108f
+ <<const>> SERVICE_SUICA_HISTORY : int = 0x090f
+ TerminalCode : int
+ ProcessCode : int
+ GetStation : int
+ InStationLineCode : int
+ InStationCode : int
+ OutStationLineCode : int
+ OutStationCode : int
+ Seq : int
+ Region : int
+ Suica()
+ <<override>> AnalyzeTransaction(data:byte[]) : void
+ <<override>> AnaryzeDateTime(date:int) : string
}
ICCard <|-- Suica
class ProcessDBTable {
+ ProcessNumber : int <<get>> <<set>>
+ ProcessName : string <<get>> <<set>>
}
enum SystemCode {
Any= 0xffff,
Common= 0xfe00,
Cyberne= 0x0003,
Edy= 0xfe00,
Suica= 0x0003,
}
class Felica {
+ Felica()
+ Dispose() : void
+ Polling(systemcode:int) : void
+ IDm() : byte[]
+ PMm() : byte[]
+ ReadWithoutEncryption(servicecode:int, addr:int) : byte[]
}
IDisposable <|-- Felica
class MainWindow <<partial>> {
+ MainWindow()
}
class "List`1"<T> {
}
Window <|-- MainWindow
MainWindow o-> "graphView" GraphView
MainWindow --> "ResultList<CsvCalcResults>" "List`1"
class CsvCalcResults {
+ IDm : string <<get>> <<set>>
+ Deposit : int <<get>> <<set>>
+ Payment : int <<get>> <<set>>
+ FromToDate : string <<get>> <<set>>
}
CsvCalcResults --> "FromDate" DateTime
CsvCalcResults --> "ToDate" DateTime
class CsvWriter {
+ {static} WriteResultCsv(cardList:List<ICCard>) : void
+ {static} WriteCalucResultCsv(cardList:List<CsvCalcResults>) : void
}
class SuicaMapper {
}
class "ClassMap`1"<T> {
}
CsvWriter +-- SuicaMapper
class IO <<static>> {
+ {static} WhiteUserHistorySql(historyList:List<ICCard>) : void
+ {static} MonthTotal(selectDatetime:DateTime, selectProcess:string) : List<CsvCalcResults>
+ {static} WeekTotal(selectDatetime:DateTime, selectProcess:string) : List<CsvCalcResults>
+ {static} GetStationName(areaCode:int, lineCode:int, stationCode:int) : string
}
class Resources {
}
class Settings <<sealed>> <<partial>> {
+ UserDBFilePath : string <<get>>
+ ProcessDBFilePath : string <<get>>
+ CsvResultFolderName : string <<get>> <<set>>
+ StationDBFilePath : string <<get>> <<set>>
+ log4netConfigFilePath : string <<get>> <<set>>
+ LogLevel : string <<get>> <<set>>
+ LogFilePath : string <<get>> <<set>>
}
Settings --> "Default" Settings
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class App <<partial>> {
+ InitializeComponent() : void
+ {static} Main() : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
class MainWindow <<partial>> {
+ InitializeComponent() : void
Connect(connectionId:int, target:object) : void
}
@enduml
| false | true | false | false | class |
d6eb34a378bd42b702d573f49113468b21d0f688 | 919554782574f600a78fe7baf6d97a6f05993e80 | /doc/Conception/Diagramme_v2/diagram.puml | 566ba465628e12068d2e49aecc54d95051d768a7 | [] | no_license | Dylanlicho/BattleOfJava | ec3030c6c13b5a3e35ec18b9b7ca73c3d2b77f53 | 771a5ce9790177274bd270868654fbdedb4db71c | refs/heads/master | 2020-09-14T16:39:05.697314 | 2019-12-23T10:05:56 | 2019-12-23T10:05:56 | 223,187,029 | 1 | 0 | null | 2019-12-22T09:18:17 | 2019-11-21T14:00:59 | Java | UTF-8 | PlantUML | false | false | 9,406 | puml | @startuml
title __MODEL's Class Diagram__\n
class app.model.board.Board {
- nbShipSunk : int
- shipsPlayer : List<Ship>
- tiles : List<Tile>
+ Board()
+ getNbShipSunk()
+ getShip()
+ getShips()
+ getTile()
+ isAllSunk()
+ setAge()
+ setShipPosition()
+ shipsSuperimposed()
+ shoot()
+ superimposed()
- sunkShip()
}
class app.model.board.ConcreteTile {
+ ConcreteTile()
+ clone()
}
enum app.model.board.EnumState {
EMPTY
HIT
MISS
SUNK
}
abstract class app.model.board.Tile {
# x : int
# y : int
+ Tile()
{abstract} + clone()
+ getState()
+ getX()
+ getY()
+ isEmpty()
+ setPosition()
+ setState()
}
class app.model.factory.GameFactory {
{static} + AITYPE : String
{static} + BOARDSIZE : int
{static} + BOTTOM : int
{static} + CENTURY15S : int
{static} + CENTURY20S : int
{static} + HUMANTYPE : String
{static} + LEFT : int
{static} + MARGIN : int
{static} + NBPLAYER1 : int
{static} + NBPLAYER2 : int
{static} + NBSHIP : int
{static} + NBTILE : int
{static} + RIGHT : int
{static} + RMIPORT : int
{static} + SPRITESHIP : String
{static} + SPRITESUNK : String
{static} + TACTICCROSS : int
{static} + TACTICRANDOM : int
{static} + TILEWIDTH : int
{static} + TOP : int
{static} + WORLDHEIGHT : float
{static} + WORLDWIDTH : float
}
interface app.model.fireTactics.FireTactics {
{abstract} + shoot()
}
class app.model.fireTactics.TacticCross {
{static} - CROSSDOWN : int
{static} - CROSSLEFT : int
{static} - CROSSRIGHT : int
{static} - CROSSUP : int
- cross : boolean[]
- random : Random
- shotInitCrossX : int
- shotInitCrossY : int
- tilesShot : boolean[][]
+ TacticCross()
+ shoot()
}
class app.model.fireTactics.TacticRandom {
- random : Random
- tilesShot : boolean[][]
+ TacticRandom()
+ shoot()
}
class app.model.player.AI {
+ AI()
+ getFireTactic()
+ placeShips()
+ setFireTactic()
+ setTactic()
+ shoot()
}
class app.model.player.Human {
+ Human()
}
abstract class app.model.player.Player {
# readyToPlay : boolean
# type : String
# win : boolean
~ num : int
+ Player()
+ asWin()
+ getNum()
+ getType()
+ isReadyToPlay()
+ setReadyToPlay()
+ setWin()
+ shoot()
+ win()
}
class app.model.ship.century15s.Caravel {
+ Caravel()
}
class app.model.ship.century15s.Century15SFactory {
{static} + HEIGHTCARAVEL : int
{static} + HEIGHTDRAKKAR : int
{static} + HEIGHTFLETTE : int
{static} + HEIGHTSAILBOAT : int
{static} + WIDTHCARAVEL : int
{static} + WIDTHDRAKKAR : int
{static} + WIDTHFLETTE : int
{static} + WIDTHSAILBOAT : int
}
class app.model.ship.century15s.Drakkar {
+ Drakkar()
}
class app.model.ship.century15s.Flette {
+ Flette()
}
class app.model.ship.century15s.Sailboat {
+ Sailboat()
}
class app.model.ship.century20s.Century20SFactory {
{static} + HEIGHTCORVETTE : int
{static} + HEIGHTCRUISER : int
{static} + HEIGHTDESTROYER : int
{static} + HEIGHTIRONCLAD : int
{static} + WIDTHCORVETTE : int
{static} + WIDTHCRUISER : int
{static} + WIDTHDESTROYER : int
{static} + WIDTHIRONCLAD : int
}
class app.model.ship.century20s.Corvette {
+ Corvette()
}
class app.model.ship.century20s.Cruiser {
+ Cruiser()
}
class app.model.ship.century20s.Destroyer {
+ Destroyer()
}
class app.model.ship.century20s.Ironclad {
+ Ironclad()
}
class app.model.ship.AgeFactory {
{static} + createNewShip()
{static} - create15SShip()
{static} - create20SShip()
}
enum app.model.ship.ShipList {
caravel
drakkar
flette
sailboat
corvette
cruiser
destroyer
ironclad
}
abstract class app.model.ship.Ship {
# height : int
# hp : int
# orientation : int
# type : String
# width : int
# x : int
# y : int
+ Ship()
+ damage()
+ getHeight()
+ getOrientation()
+ getWidth()
+ getX()
+ getY()
+ isSunk()
+ setPosition()
}
class app.model.BattleOfJava {
- start : boolean
+ BattleOfJava()
+ getBattleOfJava()
+ getBoard()
+ getCurrentPlayer()
+ getJ1()
+ getJ2()
+ getNbShipSunkJ1()
+ getNbShipSunkJ1RMI()
+ getNbShipSunkJ2()
+ getNbShipSunkJ2RMI()
+ getTileBoardJ1()
+ getTileBoardJ2()
+ isStart()
+ loadFile()
+ save()
+ setAge()
+ setBattleOfJava()
+ setCurrentPlayer()
+ setPosition()
+ setStart()
+ setTactic()
+ shoot()
+ start()
+ startNewGame()
- getStart()
}
interface app.model.Intermediary {
}
interface app.rmi.server.Instructions {
{abstract} + getBattleOfJava()
}
interface java.io.Serializable {
}
abstract class java.util.Observable {
}
interface java.lang.Cloneable {
}
app.model.board.Board .up.|> java.io.Serializable
app.model.board.ConcreteTile .up.|> java.io.Serializable
app.model.board.ConcreteTile -up-|> app.model.board.Tile
app.model.board.Tile .up.|> java.io.Serializable
app.model.board.Tile .up.|> java.lang.Cloneable
app.model.board.Tile o-- app.model.board.EnumState : state
app.model.fireTactics.TacticCross .up.|> app.model.fireTactics.FireTactics
app.model.fireTactics.TacticCross .up.|> java.io.Serializable
app.model.fireTactics.TacticRandom .up.|> app.model.fireTactics.FireTactics
app.model.fireTactics.TacticRandom .up.|> java.io.Serializable
app.model.player.AI .up.|> java.io.Serializable
app.model.player.AI -up-|> app.model.player.Player
app.model.player.AI o-- app.model.fireTactics.FireTactics : tactic
app.model.player.Human .up.|> java.io.Serializable
app.model.player.Human -up-|> app.model.player.Player
app.model.player.Player .up.|> java.io.Serializable
app.model.ship.century15s.Caravelle -up-|> app.model.ship.Ship
app.model.ship.century15s.Drakkar -up-|> app.model.ship.Ship
app.model.ship.century15s.Flette -up-|> app.model.ship.Ship
app.model.ship.century15s.Sailboat -up-|> app.model.ship.Ship
app.model.ship.century20s.Corvette -up-|> app.model.ship.Ship
app.model.ship.century20s.Cruiser -up-|> app.model.ship.Ship
app.model.ship.century20s.Destroyer -up-|> app.model.ship.Ship
app.model.ship.century20s.Ironclad -up-|> app.model.ship.Ship
app.model.ship.Ship .up.|> java.io.Serializable
app.model.BattleOfJava .up.|> app.model.Intermediary
app.model.BattleOfJava .up.|> app.rmi.server.Instructions
app.model.BattleOfJava .up.|> java.io.Serializable
app.model.BattleOfJava -up-|> java.util.Observable
app.model.BattleOfJava o-- app.model.board.Board : boardJ1
app.model.BattleOfJava o-- app.model.board.Board : boardJ2
app.model.BattleOfJava o-- app.model.player.Player : currentPlayer
app.model.BattleOfJava o-- app.model.player.Player : j1
app.model.BattleOfJava o-- app.model.player.Player : j2
@enduml
| false | true | false | false | class |
20fa7012749e91212c796d103e70a72958b9f12c | 319488df94b7f979aaa11c71088151b868a4bd8a | /demoDIPPizzaManager/src/com/example/dip/demodippizzamanager/demodippizzamanager.plantuml | 811ac338ee2d8c8a7b6c01de533d3f22f077f633 | [] | no_license | ccabrejo20/SOLIDDemos | 0864ad080a1f35f492845d1cc78ad80b0583075e | 8dbb918f710f62d520eda00146a0b1d54a02b244 | refs/heads/master | 2022-12-07T02:28:40.710654 | 2020-08-08T03:47:56 | 2020-08-08T03:47:56 | 285,679,469 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 412 | plantuml | @startuml
title __DEMODIPPIZZAMANAGER's Class Diagram__\n
namespace com.example.dip.demodippizzamanager {
class com.example.dip.demodippizzamanager.PizzaTestDrive {
{static} + main()
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
ae70a4082556778f5e9031ba9310fa71642d44cc | 0890415a1dd6a1df052407b5a18e0dc450c097dc | /src/main/resources/mixin.puml | c82a0b95f2b586d3378f9d7834046dc2e75a465d | [] | no_license | ortolanph/Java10Examples | 6199494fae70ddc31e6fe77dbb5aec35c4c85fb9 | ce88284c6ab6abddfea823cd2268401c1e205a94 | refs/heads/master | 2020-03-08T17:06:52.216426 | 2018-05-08T22:59:58 | 2018-05-08T22:59:58 | 128,260,257 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 380 | puml | @startuml
interface Vehicle {
void op()
.. default ..
void create()
}
interface Navigable {
.. default ..
#void starboard()
#void port()
#void sail()
#void anchorUp()
#void anchorDown()
}
interface Flyer {
.. default ..
#void takeOff()
#void land()
#void fly()
}
object seaplane
Vehicle <|-- Navigable
Vehicle <|-- Flyer
seaplane <|-- Navigable
seaplane <|-- Flyer
@enduml
| false | true | false | false | class |
b737454bda5b18428b3981af5d0623c36e7a4427 | 5e1144554f593084489650b0723cfe8ce8c8e26a | /Lab submits/ShutDown/ShutDown.puml | 52aaf32fb31fe9cceda857f7d1e00ca88fbc1573 | [] | no_license | 03376808-OOAD-60030112/OOAD-WEEK11 | 1838f72bb5bb31ae4b2bc87f3a1251c1581b932c | 7b50686807343739302b04f9a9b51bb1ca47a986 | refs/heads/master | 2022-06-18T22:42:09.342048 | 2020-05-08T16:28:26 | 2020-05-08T16:28:26 | 262,302,228 | 0 | 0 | null | 2020-05-08T11:09:37 | 2020-05-08T11:09:37 | null | UTF-8 | PlantUML | false | false | 321 | puml | @startuml shut
skinparam Shadowing false
skinparam state{
BackgroundColor Red
BorderColor Black
}
[*] -> Ready
Ready : Waiting Instruction
Ready -> TurnOff : push your TurnOff button
TurnOff : save all files and shutdown
TurnOff --> Shutdown : Turned Off
Shutdown : TurnOffComputer
Shutdown --> [*] : end
@enduml | false | true | false | false | sequence |
fdd5b6f89d2a5a5a31c9c21ad9ffa1635766738b | 89c9d00a26a66c63ad629bacd696e3a1c8f94205 | /src/main/java/com/gildedrose/gildedrose.plantuml | 4ca4bf5d5a2f29b53bf3dc88abb89207271aa465 | [] | no_license | ghanmikarim/gilded-rose-kata | 702245d35e49531a4951580f36150a437511a169 | 7b0ca653228075d442779e35f33ddcf746d324d8 | refs/heads/master | 2020-12-11T15:39:27.352407 | 2020-01-14T16:40:18 | 2020-01-14T16:40:18 | 233,887,101 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 589 | plantuml | @startuml
title __GILDEDROSE's Class Diagram__\n
namespace com.gildedrose {
class com.gildedrose.GildedRose {
~ items : Item[]
+ GildedRose()
+ updateQuality()
}
}
namespace com.gildedrose {
class com.gildedrose.Item {
+ name : String
+ quality : int
+ sellIn : int
+ Item()
+ toString()
}
}
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 |
3dd419e0e6cc64a377c4cf532729cd8e19e5e8cd | bc74e3916df56d63cfe00a95fa46658b325aa1fd | /design/src/create-transaction.puml | 501e86ff140efec72369abc748da2733998b5d48 | [] | no_license | JesseTG/Cryptcoin | 22c0b5caddd00fe5b3522c6b2e4965d790efec14 | 16bf3e2ff7efd6efa7dcece014665cb479016771 | refs/heads/master | 2021-01-02T22:17:43.753013 | 2014-01-14T21:38:29 | 2014-01-14T21:38:29 | 15,916,303 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 811 | puml | ' UML sequence diagram for creating and sending a transaction
@startuml
title Creating a Cryptcoin Transaction
hide footbox
participant "Wallet Node" as Client << Client >>
participant "Block Chain" as BlockChain << Data Structure >>
participant "Miner Node" as Miner << Remote >>
Client -> BlockChain : Get main chain
activate Client
activate BlockChain
Client <-- BlockChain : Main chain
Client -> Client : Identify unspent\nfunds
alt Sufficient funds
Client ->> Miner : Send transaction data
activate Miner
Miner ->> Miner : Add transaction to\nprocessing pool
Client <<-- Miner : Get change
Miner ->> Miner : Compute next block
Miner ->> BlockChain : Add new block\nto block chain
else Insufficient funds
end
deactivate Client
deactivate BlockChain
deactivate Miner
@enduml
| false | true | false | false | sequence |
f34513d23347fa9c3428d1b86ed92c75cb2dfd92 | 8742e6c49064e0c8870c5756dfb7fd2749c54fb2 | /src/main/java/csheets/worklog/n1140611/sprint1/ipc_extension_image2.puml | c8d2e427cff30708ae92357075e3f2e4573fd9df | [] | no_license | RubenTeixeira/cleansheets_isep_2dg_2016 | 8f9c3ba446da00ba862a27def010230efb392227 | 77c35c10da84d71e16498795868e53ddbab21d3f | refs/heads/master | 2021-08-30T20:54:18.110386 | 2017-12-19T11:23:03 | 2017-12-19T11:23:03 | 110,255,909 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 657 | puml | @startuml doc-files/ipc_extension_image2.png
participant ExtensionManager as ExtM
participant Class
participant "aClass:Class" as aClass
participant "extension : ShareExtension" as EExample
ExtM -> Class : aClass = forName("csheets.ext.cellsSharing.ShareExtension");
activate Class
create aClass
Class -> aClass : new
deactivate Class
ExtM -> aClass : extension = (Extension)newInstance();
activate aClass
create EExample
aClass -> EExample : new
deactivate aClass
ExtM -> EExample : name = getName();
activate EExample
deactivate EExample
ExtM -> ExtM : extensionMap.put(name, extension)
@enduml
| false | true | false | false | sequence |
8fd8a5416dfd995deaa09821c9a0a038a1976336 | b2be1f2c659ff90e5be7a97f52150c3f278e4c70 | /behavioral_patterns/template_method/template_method.puml | cf56f472b4f25a667d0527e101a2fa5833ce810e | [] | no_license | sirejik/software-design-patterns | a3f0aab43a6b73f8e8d0d4ecd13a3f4aa362addc | 67b8ebc373bdf6e5d58d699ed0a84bb3b2666f58 | refs/heads/master | 2023-01-05T09:55:51.669200 | 2020-11-05T17:02:20 | 2020-11-05T17:02:20 | 298,362,438 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 236 | puml | @startuml
interface AbstractClass {
template_method()
primitive_operation1()
primitive_operation2()
}
class ConcreteClass {
primitive_operation1()
primitive_operation2()
}
AbstractClass <|-- ConcreteClass
@enduml
| false | true | false | false | class |
22f32ff48fad0ec91c6ff417bc69cc08f4558feb | bc7e7767941d6753e728c86b9fe9a6dee24c2dc8 | /diagrams/supervision_tree.iuml | 6fed80aaa332fcb35c93594ca2e58b3ea3c5a466 | [] | no_license | v0idpwn/kafkaesque | afe17b684e9b5d81b6fbaf92a86734538a260b2a | 2c43100ebd488c6a58f6a48113bf653a08a70c56 | refs/heads/master | 2023-04-16T01:01:01.916783 | 2023-04-06T21:11:16 | 2023-04-06T21:11:16 | 345,432,568 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 594 | iuml | @startuml
skinparam nodesep 20
skinparam ranksep 40
(Kafkaesque.Supervisor) -- (Kafkaesque.Rescuer)
(Kafkaesque.Supervisor) -- (Kafkaesque.GarbageCollector)
(Kafkaesque.Supervisor) -- (Kafkaesque.Pipeline)
(Kafkaesque.Pipeline) -- (Kafkaesque.Producer)
(Kafkaesque.Pipeline) -- (Kafkaesque.Publisher)
(Kafkaesque.Pipeline) -- (Kafkaesque.Acknowledger)
package "BrodClient" {
(Kafkaesque.Publisher) -- (Kafkaesque.Clients.BrodClient)
(Kafkaesque.Clients.BrodClient) -- (TaskSupervisor)
(TaskSupervisor) -- (Task 1)
(TaskSupervisor) -- (Task 2)
(TaskSupervisor) -- (Task 3)
}
@enduml
| false | true | false | false | uml-unknown |
d40c9e14cae9eee13a0361b14cfdc9e9b85c0f09 | 0b4c1591a4b0e8944cd4924d6f53032dc188334f | /app/app.plantuml | b0b1167323ff2ada2349d1880a27005d3a1623b6 | [] | no_license | MrFreeman0/Thesis-Ring-App | d3b987c4a5bca8c903d72241508f8a9bc3358c04 | 8539bf1e6bc255df1a9439affc3aba9c6e7cc367 | refs/heads/master | 2020-09-14T18:05:06.282231 | 2019-11-21T15:52:42 | 2019-11-21T15:52:42 | 223,206,710 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 16,708 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.BuildConfig {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.LoginActivity {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.LoginActivity_ {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.MainActivity {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.MainActivity_ {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.ProfileActivity {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.ProfileActivity_ {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.RecyclerSelectorView {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.RecyclerSelectorView_ {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.SettingsActivity {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.SettingsActivity_ {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.UserData {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.UserData_ {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.UserHistory {
}
}
namespace fi.delektre.ringa.ring_thesis {
class fi.delektre.ringa.ring_thesis.UserHistory_ {
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
abstract class fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
class fi.delektre.ringa.ring_thesis.adapters.SectionStatePagerAdapter {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
class fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
class fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
class fi.delektre.ringa.ring_thesis.adapters.ViewWrapper {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace constants {
class fi.delektre.ringa.ring_thesis.constants.AppConst {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace data {
class fi.delektre.ringa.ring_thesis.data.RxBus {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace service {
class fi.delektre.ringa.ring_thesis.service.BLE_ConnectionCheck {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace service {
class fi.delektre.ringa.ring_thesis.service.BLE_Service {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace service {
class fi.delektre.ringa.ring_thesis.service.BLE_Service_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.DatePickerDialog {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.DatePickerDialog_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace ui {
class fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog_ {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.AppBarTransparentScrollingViewBehavior {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
abstract class fi.delektre.ringa.ring_thesis.util.BasicActivity {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.ChartUtils {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.DataType {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.FirebasePersistence {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.LineDataCollection {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.RetryWithDelay {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.SelectorOption {
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace util {
class fi.delektre.ringa.ring_thesis.util.UserDataCollection {
}
}
}
fi.delektre.ringa.ring_thesis.LoginActivity -up-|> androidx.appcompat.app.AppCompatActivity
fi.delektre.ringa.ring_thesis.LoginActivity_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.LoginActivity_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.LoginActivity_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.LoginActivity_ -up-|> fi.delektre.ringa.ring_thesis.LoginActivity
fi.delektre.ringa.ring_thesis.MainActivity -up-|> fi.delektre.ringa.ring_thesis.util.BasicActivity
fi.delektre.ringa.ring_thesis.MainActivity o-- fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter : adapter
fi.delektre.ringa.ring_thesis.MainActivity_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.MainActivity_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.MainActivity_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.MainActivity_ -up-|> fi.delektre.ringa.ring_thesis.MainActivity
fi.delektre.ringa.ring_thesis.ProfileActivity -up-|> androidx.appcompat.app.AppCompatActivity
fi.delektre.ringa.ring_thesis.ProfileActivity_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.ProfileActivity_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.ProfileActivity_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.ProfileActivity_ -up-|> fi.delektre.ringa.ring_thesis.ProfileActivity
fi.delektre.ringa.ring_thesis.RecyclerSelectorView -up-|> androidx.appcompat.widget.LinearLayoutCompat
fi.delektre.ringa.ring_thesis.RecyclerSelectorView_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.RecyclerSelectorView_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.RecyclerSelectorView_ -up-|> fi.delektre.ringa.ring_thesis.RecyclerSelectorView
fi.delektre.ringa.ring_thesis.SettingsActivity -up-|> android.preference.PreferenceActivity
fi.delektre.ringa.ring_thesis.SettingsActivity_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.SettingsActivity_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.SettingsActivity_ -up-|> fi.delektre.ringa.ring_thesis.SettingsActivity
fi.delektre.ringa.ring_thesis.UserData -up-|> androidx.appcompat.app.AppCompatActivity
fi.delektre.ringa.ring_thesis.UserData o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserBirthday : userBirthdayCollection
fi.delektre.ringa.ring_thesis.UserData o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserGender : userGenderCollection
fi.delektre.ringa.ring_thesis.UserData o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserHeight : userHeightCollection
fi.delektre.ringa.ring_thesis.UserData o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserName : userNameCollection
fi.delektre.ringa.ring_thesis.UserData o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserWeight : userWeighthCollection
fi.delektre.ringa.ring_thesis.UserData o-- fi.delektre.ringa.ring_thesis.adapters.SectionStatePagerAdapter : mSectionStateAdapter
fi.delektre.ringa.ring_thesis.UserData_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.UserData_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.UserData_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.UserData_ -up-|> fi.delektre.ringa.ring_thesis.UserData
fi.delektre.ringa.ring_thesis.UserHistory -up-|> androidx.appcompat.app.AppCompatActivity
fi.delektre.ringa.ring_thesis.UserHistory_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.UserHistory_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.UserHistory_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.UserHistory_ -up-|> fi.delektre.ringa.ring_thesis.UserHistory
fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
fi.delektre.ringa.ring_thesis.adapters.SectionStatePagerAdapter -up-|> androidx.fragment.app.FragmentStatePagerAdapter
fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter -up-|> fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase
fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter_ -up-|> fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter
fi.delektre.ringa.ring_thesis.adapters.ViewWrapper -up-|> androidx.recyclerview.widget.RecyclerView.ViewHolder
fi.delektre.ringa.ring_thesis.adapters.ViewWrapper o-- V : view
fi.delektre.ringa.ring_thesis.service.BLE_ConnectionCheck -up-|> android.content.BroadcastReceiver
fi.delektre.ringa.ring_thesis.service.BLE_Service -up-|> android.app.Service
fi.delektre.ringa.ring_thesis.service.BLE_Service o-- fi.delektre.ringa.ring_thesis.util.LineDataCollection : parseData
fi.delektre.ringa.ring_thesis.service.BLE_Service o-- fi.delektre.ringa.ring_thesis.service.BLE_ConnectionCheck : BLE_ConnetionCheck
fi.delektre.ringa.ring_thesis.service.BLE_Service_ -up-|> fi.delektre.ringa.ring_thesis.service.BLE_Service
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment -up-|> androidx.fragment.app.Fragment
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserBirthday : userBirthdayCollection
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserHeight : userHeightCollection
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment o-- fi.delektre.ringa.ring_thesis.util.UserDataCollection.UserWeight : userWeigthCollection
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment_ -up-|> fi.delektre.ringa.ring_thesis.ui.CreateProfileDataFragment
fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment -up-|> androidx.fragment.app.Fragment
fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment_ -up-|> fi.delektre.ringa.ring_thesis.ui.CreateProfileNameFragment
fi.delektre.ringa.ring_thesis.ui.DatePickerDialog .up.|> android.view.View.OnClickListener
fi.delektre.ringa.ring_thesis.ui.DatePickerDialog -up-|> androidx.fragment.app.DialogFragment
fi.delektre.ringa.ring_thesis.ui.DatePickerDialog_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.ui.DatePickerDialog_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.ui.DatePickerDialog_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.ui.DatePickerDialog_ -up-|> fi.delektre.ringa.ring_thesis.ui.DatePickerDialog
fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog -up-|> androidx.fragment.app.DialogFragment
fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog_ -up-|> fi.delektre.ringa.ring_thesis.ui.GenderPickerDialog
fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog .up.|> android.view.View.OnClickListener
fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog -up-|> androidx.fragment.app.DialogFragment
fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog_ -up-|> fi.delektre.ringa.ring_thesis.ui.HeightPickerDialog
fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog .up.|> android.view.View.OnClickListener
fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog -up-|> androidx.fragment.app.DialogFragment
fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog_ .up.|> org.androidannotations.api.bean.BeanHolder
fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog_ .up.|> org.androidannotations.api.view.HasViews
fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog_ .up.|> org.androidannotations.api.view.OnViewChangedListener
fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog_ -up-|> fi.delektre.ringa.ring_thesis.ui.WeightPickerDialog
fi.delektre.ringa.ring_thesis.util.AppBarTransparentScrollingViewBehavior -up-|> com.google.android.material.appbar.AppBarLayout.ScrollingViewBehavior
fi.delektre.ringa.ring_thesis.util.BasicActivity -up-|> androidx.appcompat.app.AppCompatActivity
fi.delektre.ringa.ring_thesis.util.FirebasePersistence -up-|> android.app.Application
fi.delektre.ringa.ring_thesis.util.RetryWithDelay .up.|> io.reactivex.functions.Function
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 |
9f33d4926523371fcce2041b0a15668fb48e7bc8 | 80ebb72f964ce04f26191ac78acba6f19296eced | /docs/mad-white/puml/mad-white-component.puml | 6473fbb157014899bd16640f4761fbb3ee8fcde8 | [
"Apache-2.0"
] | permissive | dltdojo/taichu-crypto | f25fd8765bf77378ad0611d01587889c1bd8d4ce | d4db2aa67d41d5b5b6ea0fb4a0ebbe618fa14e94 | refs/heads/master | 2023-03-04T12:58:54.251174 | 2022-12-14T14:11:41 | 2022-12-14T14:11:41 | 196,412,006 | 1 | 0 | Apache-2.0 | 2023-03-03T05:15:55 | 2019-07-11T14:37:10 | JavaScript | UTF-8 | PlantUML | false | false | 635 | puml | @startuml
header DLTDOJO
footer https://github.com/dltdojo/taichu-crypto
title mad-white-component-1907-1
skinparam handwritten false
left to right direction
package "Docker Container" {
folder "Code Server container"{
[Code\nServer] as CS #Yellow
[mad-white\nprojects]
folder "VS Code Extension"{
[plantuml]
}
}
}
package "Kubernetes" {
folder "microk8s" {
[DNS]
[Registry]
[Storage]
}
folder "Gitops"{
[GIT gogs] as GIT #Green
[CI drone] as CI #Blue
}
}
CS --> GIT : 1. push
GIT -> CI : 2. build and test
CI --> Registry : 3. push
CI <-- Registry : 4. pull image
@enduml
| false | true | false | false | sequence |
e0422a4daabbf0acd857863fa2500a463011497b | fafaf973381b21bea8eb334545ded62282cba3a2 | /object_pool/ObjectPool.plantuml | e7d65b7b833d9bc9263f87c6cddb1024a74333b3 | [] | no_license | recepkaraca/DesignPatternsCourse | d9edc61009b4313a08b0383473b0d97f8fb0a2dd | 69f507ebec842c6b50e9a2a093496f62760170fe | refs/heads/master | 2022-09-11T10:19:54.206890 | 2020-06-02T22:51:09 | 2020-06-02T22:51:09 | 245,816,321 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 498 | plantuml | @startuml scenario_uml
skinparam classAttributeIconSize 0
left to right direction
class BookPool{
{static}-Lazy<BookPool> instance
{static}+string Instance
-int defaultSize
-ConcurrentBag<Book> _bag
-int _currentSize
-int _counter
-object _lockObject
-BookPool()
+Book AcquireObject()
+ReleaseObject()
}
abstract class Book{
{abstract}+string GatherBook()
}
class RequestBook{
}
Book -> BookPool
RequestBook -o BookPool
RequestBook -|> Book
@enduml | false | true | false | false | class |
4914e5b6e5e6d90257d97d05b87400e31ccca084 | 34acd2aa8d51295c0c4289e43e8961f5e23b5a08 | /PlantUML/raw/Custom/ElCazador.Worker/Modules/Tools/LsassDumpTool.puml | 4cf76daa612f2bb3316476ef04367149145b22e7 | [] | no_license | fisboger/Thesis | a6887e195c7daa8317abe3167de1676420173e33 | 4746126f69da615c641380fd7a33c863f2fedee3 | refs/heads/master | 2020-04-03T15:18:08.671739 | 2019-02-07T11:17:06 | 2019-02-07T11:17:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 666 | puml | @startuml
class LsassDumpTool {
+ LsassDumpTool(controller:IWorkerController)
+ <<async>> Run(target:Target, user:User) : Task
- <<async>> RunMimikatz(dumpFilePath:string) : Task
- <<async>> ParseMimikatzOutput(output:string) : Task
- <<async>> ParseMimikatzLine(line:string) : Task<string>
- <<async>> RunProcess(target:Target, user:User, command:string, getArguments:Func<Target, User, string, string>) : Task<bool>
- GetClearTextArguments(target:Target, user:User, command:string) : string
- GetNTLMArguments(target:Target, user:User, command:string) : string
}
BaseModule <|-- LsassDumpTool
IToolModule <|-- LsassDumpTool
@enduml
| false | true | false | false | class |
a979b739d34a09da8f20c3f742e3b17df5500b76 | 2cb0d17b297862de0b2876905bc69fab6a3fda1a | /presentation/iteration_2/simplified_class_diagram.plantuml | 733b815ec0178ccad37ca313d3229bbe81ca932c | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | julienbenaouda/projectJJA | 507bd714ec752d41ce1ef2f7fd05104390f34e92 | 9063388043b79e68640379cda5f674df62f76213 | refs/heads/master | 2021-04-27T17:28:29.111045 | 2018-06-14T19:29:11 | 2018-06-14T19:29:11 | 122,321,355 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,996 | plantuml | @startuml
package taskman {
class Initiator {
}
package taskman.frontend {
interface MethodCall {
}
class UserInterface {
}
package taskman.frontend.sections {
class Cancel {
}
class FormSection {
- withCancel : Boolean
- questions : List<String>
- answers : List<String>
}
class MenuSection {
- selectionSection : SelectionSection<MethodCall>
}
abstract class Section {
}
class SelectionSection {
- withCancel : Boolean
- cancelText : String
- optionNames : List<String>
- optionObjects : List<Type>
- answer : Integer
}
class TextSection {
- text : String
- isBlocking : boolean
}
class TitleSection {
}
}
}
package taskman.backend {
class Controller {
}
package taskman.backend.wrappers {
interface AvailabilityPeriodWrapper {
}
interface ProjectWrapper {
}
interface ResourceTypeWrapper {
}
interface ResourceWrapper {
}
interface TaskWrapper {
}
interface TimeSpanWrapper {
}
interface UserWrapper {
}
}
package taskman.backend.importexport {
class ImportExportException {
}
class XmlObject {
- xstream : XStream
}
}
package taskman.backend.project {
class Project {
- taskList : ArrayList<Task>
- name : String
- description : String
- creationTime : LocalDateTime
- dueTime : LocalDateTime
}
class ProjectOrganizer {
- projects : Collection<Project>
}
}
package taskman.backend.constraint {
enum AmountComparator {
EQUALS
NOT_EQUALS
GREATER_THAN
GREATER_THAN_OR_EQUALS
SMALLER_THAN
SMALLER_THAN_OR_EQUALS
}
class AndConstraint {
}
class Constraint {
- amount : int
}
interface ConstraintComponent {
}
class IfThenConstraint {
}
class NotConstraint {
}
class OrConstraint {
}
}
package taskman.backend.resource {
class DeveloperResource {
}
class Plan {
- requirements : Map<ResourceType, Integer>
- reservations : List<Reservation>
}
class Reservation {
- userSpecific : boolean
}
class Resource {
- name : String
- reservations : ArrayList<Reservation>
}
class ResourceManager {
- resourceTypes : Set<ResourceType>
- constraints : List<ConstraintComponent>
}
class ResourceType {
- name : String
- availability : HashMap<Integer, AvailabilityPeriod>
- resources : ArrayList<Resource>
}
}
package taskman.backend.simulation {
class SimulationManager {
- previousState : String
}
}
package taskman.backend.task {
class Task {
- name : String
- description : String
- estimatedDuration : long
- acceptableDeviation : double
- dependencies : ArrayList<Task>
}
abstract class TaskState {
- status : String
}
class TaskStateExecuting {
}
class TaskStateFailed {
}
class TaskStateFinished {
}
class TaskStatePlanned {
}
class TaskStateUnavailable {
}
}
package taskman.backend.time {
class AvailabilityPeriod {
- startTime : LocalTime
- endTime : LocalTime
}
class Clock {
- time : LocalDateTime
}
class TimeParser {
{static} - DATE_TIME_FORMATTER : DateTimeFormatter
{static} - DATE_FORMATTER : DateTimeFormatter
}
class TimeSpan {
- startTime : LocalDateTime
- endTime : LocalDateTime
}
}
package taskman.backend.user {
class Developer {
}
class OperationNotPermittedException {
}
class ProjectManager {
}
abstract class User {
- name : String
- password : String
}
class UserManager {
- users : List<User>
}
}
}
}
AndConstraint -up-|> ConstraintComponent
AndConstraint o-- ConstraintComponent : constraint1
AndConstraint o-- ConstraintComponent : constraint2
Constraint -up-|> ConstraintComponent
Constraint o-- ResourceType : resourceType
Constraint o-- AmountComparator : amountComparator
IfThenConstraint -up-|> ConstraintComponent
IfThenConstraint o-- ConstraintComponent : ifConstraint
IfThenConstraint o-- ConstraintComponent : thenConstraint
NotConstraint -up-|> ConstraintComponent
NotConstraint o-- ConstraintComponent : constraint
OrConstraint -up-|> ConstraintComponent
OrConstraint o-- ConstraintComponent : constraint1
OrConstraint o-- ConstraintComponent : constraint2
UserInterface o-- Controller : controller
FormSection -up-|> Section
MenuSection -up-|> Section
SelectionSection -up-|> Section
TextSection -up-|> Section
TitleSection -up-|> Section
TitleSection o-- TextSection : textSection
Controller o-- Clock : clock
Controller o-- UserManager : userManager
Controller o-- ProjectOrganizer : projectOrganizer
Controller o-- ResourceManager : resourceManager
Controller o-- SimulationManager : simulationManager
XmlObject o-- ResourceManager : resourceManager
XmlObject o-- UserManager : userManager
XmlObject o-- ProjectOrganizer : projectOrganizer
XmlObject o-- Clock : clock
Project -up-|> ProjectWrapper
DeveloperResource -up-|> Resource
DeveloperResource o-- AvailabilityPeriod : breakTime
DeveloperResource o-- Developer : developer
Plan o-- Task : task
Reservation o-- Resource : resource
Reservation o-- TimeSpan : timeSpan
Resource -up-|> ResourceWrapper
Resource o-- ResourceType : type
ResourceType -up-|> ResourceTypeWrapper
Task -up-|> TaskWrapper
Task o-- TimeSpan : timeSpan
Task o-- TaskState : state
Task o-- Task : alternative
Task o-- Plan : plan
TaskStateExecuting -up-|> TaskState
TaskStateFailed -up-|> TaskState
TaskStateFinished -up-|> TaskState
TaskStatePlanned -up-|> TaskState
TaskStateUnavailable -up-|> TaskState
AvailabilityPeriod -up-|> AvailabilityPeriodWrapper
TimeSpan -up-|> TimeSpanWrapper
Developer -up-|> User
ProjectManager -up-|> User
User -up-|> UserWrapper
UserManager o-- User : currentUser
@enduml
| false | true | false | false | class |
bf83951bde15389ca5ec25ebe0f199f7ab003f52 | 35613a63c2dcf790adc2dcd025a9021a95f9762d | /docs/engine_renderdevice_create_act.puml | 9c821fb0a4bbefece52aae4f083fde7ed148be58 | [] | no_license | fromasmtodisasm/xrRenderPC_VK | 37bda9ff60c98a4de82999af0f2775d508dd094d | 07ef9bbc0a0ab21605423189b4e2952ae8d9c400 | refs/heads/master | 2022-03-24T11:42:53.270351 | 2019-12-21T08:06:03 | 2019-12-21T08:06:03 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 914 | puml | @startuml
header CRenderDevice::Create()
footer xrEngine
hide footbox
participant RenderDevice
box "Render"
participant Render
participant ResourceManager
participant HW
participant Backend
endbox
RenderDevice -> Render: SetupGPU()
RenderDevice <-- Render
RenderDevice -> Render: Create()
Render -> HW: CreateDevice()
Render <-- HW
create ResourceManager
Render -> ResourceManager
RenderDevice <-- Render
RenderDevice -> RenderDevice: _SetupStates()
RenderDevice -> Render: SetupStates()
RenderDevice <-- Render
RenderDevice -> Render: OnDeviceCreate()
Render -> Backend: OnDeviceCreate()
note over Backend: quad IB\n VB\n IB
Render <-- Backend
Render -> ResourceManager: OnDeviceCreate()
note over ResourceManager: process shaders.xr
Render <-- ResourceManager
Render -> Render: create()
note over Render: alloc RenderTarget\n ModelPool\n LightManager
RenderDevice <-- Render
@enduml
| false | true | false | false | sequence |
d2e36d5f80c4c94dca540fc80bff34b470904046 | 3eb09e6a715cd51237220a02acaf2b5766b117c8 | /test3/reverse.puml | 548f09bc4147f06258a3a2eeb600e9eedb500a0a | [] | no_license | SuperTchain/is_analysis | 7c118b80c4e5c7117b695095d7a164bdc8957351 | e0ac48f38159bc74485891bbe889e12782c657b2 | refs/heads/master | 2021-01-14T06:44:21.003157 | 2020-05-26T17:07:52 | 2020-05-26T17:07:52 | 244,513,732 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 147 | puml | @startuml
object Reverse
Reverse : reverseid=1
Reverse : reversename="dad"
Reverse : canclereserveid=23
Reverse : canclereservename="dad"
@enduml | false | true | false | false | class |
ab0a77b45d0b69a626a4ee08760d44b84aa5c6fa | 9e9e2b7277fa0e53ee3143a58479a7adcf60667a | /src/main/java/ex41/SorterDiagram.puml | 34788a3bc9190e563055c8c8cb1a6e779054c032 | [] | no_license | rebeccapinap/practicecode-cop3330-assignment3 | 17b68485b1b9c337a8228e860766ee92109d8dfc | c8b4cee0ce6e269c947d3496fcc6f5dde0510cac | refs/heads/master | 2023-08-19T08:45:17.028607 | 2021-10-12T02:29:19 | 2021-10-12T02:29:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 226 | puml | @startuml
'https://plantuml.com/sequence-diagram
class NameSorter
{
+ static void main( String[] args )
+ static ArrayList<String> scanFile (File input)
+ static void writeFile (ArrayList<String> list)
}
@enduml | false | true | false | false | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.