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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3d14ae4884991b3b1190b1ddd8f3340bb16ca813 | a3a48bef46b31fcdd914f8ab67f5282f560d5c28 | /hipparchus-geometry/src/site/design/partitioning.puml | ed87b67bbee664c76f4e66e6067d16d3abdedb12 | [
"GPL-2.0-only",
"Apache-2.0",
"MIT",
"BSD-3-Clause",
"Minpack",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-generic-cla"
] | permissive | Hipparchus-Math/hipparchus | f88ebc1e4a9ab8cd698f258564ecfcda75a389a6 | fc5af4e976fb48de690c6670b0bc0214d0b095db | refs/heads/master | 2023-09-04T12:34:51.209790 | 2023-09-01T17:26:49 | 2023-09-01T17:26:49 | 60,063,484 | 114 | 41 | Apache-2.0 | 2023-08-19T10:30:33 | 2016-05-31T06:24:32 | Java | UTF-8 | PlantUML | false | false | 3,958 | puml | ' Licensed to the Apache Software Foundation (ASF) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' The ASF licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
package org.hipparchus.geometry #ECEBD8 {
package partitioning #DDEBD8 {
abstract "AbstractSubHyperplane<S extends Space, T extends Space>" as AbstractSubHyperplane_S_T_
note left
an abstract sub-hyperplane contains
- an hyperplane defined in space S
- a region defined in space T
T being a sub-space of S
end note
interface "Hyperplane<S extends Space>" as Hyperplane_S_ {
+double getOffset(Vector point)
+boolean sameOrientationAs(Hyperplane other)
+SubHyperplane wholeHyperplane()
+Region wholeSpace()
}
interface "SubHyperplane<S extends Space>" as SubHyperplane_S_ {
+Hyperplane getHyperplane()
+boolean isEmpty()
+double getSize()
+Side side(Hyperplane hyperplane)
+SplitSubHyperplane split(Hyperplane hyperplane)
+SubHyperplane reunite(SubHyperplane other)
}
class "BSPTree<S extends Space>" as BSPTree_S_ {
+boolean insertCut(Hyperplane hyperplane)
+void setAttribute(Object attribute)
+Object getAttribute()
+void visit(BSPTreeVisitor visitor)
+BSPTree getCell(Vector point)
+BSPTree split(SubHyperplane sub)
}
interface "BSPTreeVisitor<S extends Space>" as BSPTreeVisitor_S_ {
+Order visitOrder(BSPTree node)
+void visitInternalNode(BSPTree node)
+void visitLeafNode(BSPTree node)
}
interface "Region<S extends Space>" as Region_S_ {
+boolean isEmpty()
+boolean contains(Region region)
+Location checkPoint(Vector point)
+double getBoundarySize()
+double getSize()
+Vector getBarycenter()
+Side side(Hyperplane hyperplane)
+SubHyperplane intersection(SubHyperplane sub)
}
note top
a region is a part of the space
it may be empty,
it may cover the whole space,
it may have infinite non-closed boundaries,
it may be in several disconnected sub-parts,
it may contain holes
end note
enum Location {
+INSIDE
+OUTSIDE
+BOUNDARY
}
enum Side {
+PLUS
+MINUS
+BOTH
+HYPER
}
Hyperplane_S_ "1" <--* "1" SubHyperplane_S_
SubHyperplane_S_ "0..1" <--* BSPTree_S_ : cut
BSPTree_S_ <--o BSPTree_S_ : "parent "
BSPTree_S_ o--> BSPTree_S_ : "children"
Region_S_ *--> "1" BSPTree_S_
Hyperplane_S_ <-- Region_S_
AbstractSubHyperplane_S_T_ ..|> SubHyperplane_S_
AbstractSubHyperplane_S_T_ *--> "1" Hyperplane_S_ : hyperplane
AbstractSubHyperplane_S_T_ *--> "1" Region_S_ : region
Region_S_ --> Location
Region_S_ --> Side
BSPTree_S_ <-- BSPTreeVisitor_S_ : visits
}
}
@enduml
| false | true | false | false | sequence |
d4e5f40bc29bb0fdeec989a0ed415c998bbb3de9 | ac5524a62a149719c3b1a44e0ed131327d6e3d90 | /project2/problem_5/blockchain_add.puml | fe19852fbabab4139ab1035e30966da6b08cda60 | [] | no_license | encomp/dsan_project2 | 7c0398c4d57f13beb74ffa3dcbefb592d5dc13cc | 368dd2f9f7e2ff1b061b256b6e3a73ae7be4e56d | refs/heads/master | 2020-07-06T07:06:43.693815 | 2019-08-18T19:14:31 | 2019-08-18T19:14:31 | 202,934,209 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 750 | puml | @startuml
User -> Blockchain: add(data)
Blockchain -> DoubleLinkedList :size()
Blockchain <-- DoubleLinkedList :return size > 0
Blockchain -> Block :Block(data, prior_hash)
Block -> datetime :utcnow()
Block <-- datetime: return utcnow
Block -> Block :set_timestamp(utcnow)
Block -> Block :set_data(data)
Block -> Block :set_previous_hash(prior_hash)
Block -> hashlib :sha256()
Block <-- hashlib : return sha1
Block -> sha1 :update(data)
Block -> sha1 :hexdigest()
Block <-- sha1 :return hexdigest
Block -> Block :set_hash(hexdigest)
Blockchain <-- Block :return block
Blockchain --> Blockchain : set_prior_block(block)
Blockchain -> DoubleLinkedList :insert(block)
Blockchain <-- DoubleLinkedList :return True
User <-- Blockchain :return True
@enduml | false | true | false | false | sequence |
88e3fb9f565bb5df04f6aad8e092d5a979eca557 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitAssociateModeChangedMessage.puml | 79beb98ad122941b48517d59836647aac0fd3fe4 | [] | 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,320 | 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 BusinessUnitAssociateModeChangedMessage [[BusinessUnitAssociateModeChangedMessage.svg]] extends Message {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
oldAssociateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
}
interface Message [[Message.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
| false | true | false | false | class |
994e1ceb3988433f11205d2457388da2ccf47a47 | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao3/UC9/UC9_CD.puml | 893c8869b7d7e8b5991f82d5357556cba43fa5d6 | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,920 | puml | @startuml
skinparam classAttributeIconSize 0
left to right direction
class EfectuarCandidaturaUI {
}
class EfectuarCandidaturaController {
+getAnunciosElegiveisDoFreelancer()
+novaCandidatura(anuncioId,valorPrt,nrDias,txtApres,txtMotiv)
+registaCandidatura()
}
class Plataforma {
-String designacao
+getRegistoFreelancers
+getRegistoAnuncios()
}
class RegistoFreelancer
{
+getFreelancerByEmail(email)
}
class RegistoAnuncios
{
+getAnunciosElegiveisDoFreelancer(freel)
+getAnuncioById(anuncioId)
}
class Freelancer {
-String nome
-String NIF
-String telefone
-String email
}
class Anuncio
{
-Date dtInicioPublicitacao
-Date dtFimPublicitacao
-Date dtInicioCandidatura
-Date dtFimCandidatura
-Date dtInicioSeriacao
-Date dtFimSeriacao
+novaCandidatura(freel,dataCand,valorPrt,nrDias,txtApres,txtMotiv)
+aceitaCandidaturas()
+éFreelancerElegivel(freel)
+registaCandidatura(cand)
}
class ListaCandidaturas
{
+novaCandidatura(freel,dataCand,valorPrt,nrDias,txtApres,txtMotiv)
+registaCandidatura(cand)
-validaCandidatura(cand)
-addCandidatura(cand)
}
class Candidatura
{
-Date dataCandidatura
-Double valorPretendido
-Integer nrDias
-String txtApresentacao
-String txtMotivacao
+Candidatura(freel,dataCand,valorPrt,nrDias,txtApres,txtMotiv)
}
EfectuarCandidaturaUI ..> EfectuarCandidaturaController
EfectuarCandidaturaController ..> Plataforma
EfectuarCandidaturaController ..> RegistoFreelancer
EfectuarCandidaturaController ..> RegistoAnuncios
Plataforma "1" --> "1" RegistoAnuncios : possui
Plataforma "1" --> "1" RegistoFreelancer : possui
RegistoAnuncios "1" --> "*" Anuncio : agrega
Anuncio "1" --> "1" ListaCandidaturas : possui
ListaCandidaturas "1" --> "*" Candidatura : agrega
Candidatura "*" --> "1" Freelancer: realizada por >
RegistoFreelancer "1" --> "*" Freelancer: agrega
@enduml
| false | true | true | false | sequence |
32685bcab400c20fc123204aaa31c8d4beca4ecc | e3d2dc3820fe10e99d72f2c789c545ee340a2943 | /app/src/main/java/com/arno/designmode/factory/SimpleFactory.puml | 1e97a9802b1b6d2a1f2038e22cb6ee92ab2c99da | [] | no_license | moomogn/DesignMode | 856482723be204f6ebcee8e69bb7c476fd2f9ee5 | de2889d19d7f8414d7acbcc98696cdb062935aa8 | refs/heads/master | 2021-08-28T11:58:23.945179 | 2017-12-12T05:52:41 | 2017-12-12T05:52:41 | 113,949,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 296 | puml | @startuml
ProductA .> Product
Product <. ProductB
ProductA <|-- Factory
ProductB <|-- Factory
interface Product{
void use()
}
class ProductA{
someFields
someMethods()
}
class ProductB{
someFields
someMethods()
}
class Factory{
Product createProduct(string)
}
@enduml | false | true | false | false | class |
37dec15a43e10717e42e893bcad7b190224290d3 | 78fe321ba400cd0f4bc47ddd39f1ad2415db2e9a | /src/main/java/com/example/demo/config/config.plantuml | afdf8eb283ab36bdde04283720c259520dbd9ed6 | [] | no_license | StioiuDenisAdrian/Ticket-Selling-System | 705b2357e2e8708f9186ad7b3b75751d663621b3 | 31dc440894725148bb36356d7d032bbf916b0951 | refs/heads/master | 2023-03-25T20:31:23.265452 | 2021-03-25T17:16:35 | 2021-03-25T17:16:35 | 351,516,436 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 652 | plantuml | @startuml
title __CONFIG's Class Diagram__\n
namespace om.example.demo {
namespace config {
class com.example.demo.config.SecurityConfig {
- dataSource : DataSource
+ passwordEncoder()
# configure()
# configure()
}
}
}
com.example.demo.config.SecurityConfig -up-|> org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter
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 |
09553aa73f2a5fd6d57b9f3200e894c5938f8bc5 | 8c59fbc94a2ba7fa9a12c10991fe334cda0df128 | /metrics/ci_integrations/docs/diagrams/config_validator_destination_class_diagram.puml | 3f0eddbf0300be5b0b8d3a4b9f8cdbe571b8a814 | [
"Apache-2.0"
] | permissive | solid-vovabeloded/flank-dashboard | 7e952fa1399585d3f15cae2ed2cab435fb82df3f | 15dae0c40823cc12886a1bb0c087442c0697ac89 | refs/heads/master | 2023-07-11T19:54:58.430004 | 2021-08-06T10:29:26 | 2021-08-06T10:29:26 | 389,593,827 | 0 | 0 | Apache-2.0 | 2021-07-26T10:33:52 | 2021-07-26T10:25:59 | null | UTF-8 | PlantUML | false | false | 6,604 | puml | @startuml config_validator_destination_class_diagram
package integration {
package interface {
package base.config {
package model as interface_model {
abstract class ConfigField {}
}
package validator as base_validator {
interface ConfigValidator<T extends Config> {
+ validationDelegate : ValidationDegate
+ Future<ValidationResult> validate(T config)
}
}
package validator_factory as interface_factory {
interface ConfigValidatorFactory<T extends Config> {
+ ConfigValidator<T> create(T config)
}
}
package validation_delegate as interface_delegate {
interface ValidationDelegate {}
}
}
}
package validation as integration_validation {
package printer as integration_validation_printer {
class ValidationResultPrinter {
- _ioSink : IOSink
+ void print(ValidationResult result)
}
}
package model as validation_model{
package builder as validation_model_builder {
class ValidationResultBuilder {
- _results: Map<ConfigField, FieldValidationResult>
+ ValidationResultBuilder forFields(List<ConfigField> fields)
+ ValidationResult build()
+ void setResult(ConfigField field, FieldValidationResult result)
+ void setEmptyResults(FieldValidationResult result)
}
}
class ValidationResult {
+ results: UnmodifiableMapView<ConfigField, FieldValidationResult>
}
class FieldValidationResult<T> {
+ conclusion : FieldValidationConclusion
+ additionalContext : String
+ data : T
+ isSuccess : bool
+ isFailure : bool
+ isUnknown : bool
+ FieldValidationResult success(String additionalContext, T data)
+ FieldValidationResult failure(String additionalContext, T data)
+ FieldValidationResult unknown(String additionalContext, T data)
}
}
}
}
package destination.cool_integration {
package party as destination_party {
class CoolIntegrationDestinationParty {
+ validatorFactory : CoolIntegrationValidatorFactory
}
}
package config as cool_integration_config {
package validator as cool_integration_validator {
class CoolIntegrationDestinationValidator {
+ validationDelegate: CoolIntegrationDestinationValidationDelegate
+ validationResultBuilder: ValidationResultBuilder
+ Future<ValidationResult> validate(CoolIntegrationDestinationConfig config)
}
}
package validator_factory as cool_integration_validator_factory {
class CoolIntegrationValidatorFactory {}
}
package validation_delegate as cool_integration_validation_delegate {
class CoolIntegrationDestinationValidationDelegate {
- _client: CoolIntegrationClient
+ Future<FieldValidationResult> validateExtraField()
}
}
package model as destination_model {
class CoolIntegrationDestinationConfigField {
+ {static} accessToken: CoolIntegrationDestinationConfigField
+ {static} destinationProjectId: CoolIntegrationDestinationConfigField
+ {static} someExtraField: CoolIntegrationDestinationConfigField
+ {static} fields: List<CoolIntegrationDestinationConfigField>
}
}
}
}
package client.cool_integration as client_cool_integration {
class CoolIntegrationClient {}
}
package cli {
package command {
abstract class CiIntegrationCommand {}
class ValidateCommand {
+ name : String
+ description : String
+ supportedParties : SupportedIntegrationParties
- _integrationConfigParser : RawIntegrationConfigParser
+ void run()
}
}
}
CoolIntegrationDestinationValidator --> CoolIntegrationDestinationValidationDelegate : uses
CoolIntegrationDestinationValidationDelegate --> CoolIntegrationClient : uses
CoolIntegrationValidatorFactory --> CoolIntegrationDestinationValidator : creates
CoolIntegrationValidatorFactory --> CoolIntegrationClient : creates
CoolIntegrationValidatorFactory --> CoolIntegrationDestinationValidationDelegate : creates
ValidateCommand -up-|> CiIntegrationCommand
ValidateCommand --|> ValidationResultPrinter : uses
ValidateCommand --> CoolIntegrationDestinationValidator : uses
ValidateCommand --> CoolIntegrationValidatorFactory : uses
ValidateCommand --> CoolIntegrationDestinationParty : uses
CoolIntegrationDestinationParty --> CoolIntegrationValidatorFactory : provides
CoolIntegrationDestinationValidationDelegate ..|> ValidationDelegate
CoolIntegrationDestinationValidationDelegate --> FieldValidationResult : uses
CoolIntegrationDestinationConfigField --|> ConfigField
CoolIntegrationDestinationValidator --|> ConfigValidator
CoolIntegrationDestinationValidator --> CoolIntegrationDestinationConfigField : uses
CoolIntegrationDestinationValidator --> ValidationResult : provides
CoolIntegrationDestinationValidator --> ValidationResultBuilder : uses
CoolIntegrationDestinationValidator --> FieldValidationResult : uses
ValidationResultPrinter --> ValidationResult : uses
ValidationResult --> FieldValidationResult : uses
ValidationResultBuilder --> FieldValidationResult : uses
CoolIntegrationValidatorFactory ..|> ConfigValidatorFactory
CoolIntegrationClient -[hidden]-> CoolIntegrationDestinationValidationDelegate
ConfigField -[hidden]-> ValidationResultPrinter
@enduml
| false | true | false | false | sequence |
02b80b19b87c4414e00acbac80f83148d00b45a2 | 316a7fcf8746d396980c6038889d4afad9d85f0c | /src/site/plantuml/repo_structure.puml | 4f2a7162767cd5e472df3c6c07ea279305f06f79 | [] | no_license | etraveli/etraveli_codestyle | 0811269e23826be90f5e011fbfbcbeda09659617 | 7356009b33bf7d68cded8dcec728482239b1f364 | refs/heads/master | 2023-08-16T22:17:14.491470 | 2021-01-14T10:20:15 | 2021-01-14T10:20:15 | 125,354,602 | 0 | 0 | null | 2023-08-15T17:41:11 | 2018-03-15T11:03:28 | Kotlin | UTF-8 | PlantUML | false | false | 1,602 | puml | '
' Purpose: Repo responsibilities illustration
'
@startuml
package "OSS Repos" {
' Parts
'
node "Codestyle Repo" as repoCodeStyle
node "Shared Components Repo" as repoShared
' Relations
'
repoShared .up.> repoCodeStyle : " Uses definitions from ..."
' Notes
'
note right of repoCodeStyle {
Contains:
# Build-scope Annotations
# Plugin configurations
# License definitions
# Setup instructions
# Parent POMs
}
note right of repoShared {
Contains:
# Library definitions
# Non-domain components
# Complex API adaptions
}
}
package "Closed-source Repos" {
' Parts
'
node "Domain-Component Repos" <<Multiple>> as repoDomainComponents
node "Application Repos" <<Multiple>> as repoApplications
' Relations
'
repoApplications .up.> repoDomainComponents : " Aggregates components from ..."
repoDomainComponents .up.> repoShared : " Uses components from ..."
' Notes
'
note right of repoDomainComponents {
Contains:
# Domain model
# Domain components
# Generated domain documentation
}
note right of repoApplications {
Contains:
# Service implementations
# JavaEE application projects ("<i>WAR</i>", etc)
# Assembly projects (Containers etc)
}
}
@enduml | false | true | false | false | deployment |
c81ba70e9cfa58bb2ec7e285be93fcdfc53816f9 | 9ed64cf55205875b3577756ca587e4d94abbf1fa | /src/com/design/structure/adapter/clazz/class_adapter.puml | db85479d622b1bcb163ada3e8e5ceb0a34e0e39f | [] | no_license | shf-1218/Design_Patterns | 65f3e8598b9223489d805759f59ba186300d86d9 | 52a3b279609a6699300699d21877137c878dfe32 | refs/heads/master | 2022-12-26T13:40:57.846535 | 2020-09-27T10:23:30 | 2020-09-27T10:23:30 | 299,005,976 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 249 | puml | @startuml
Class Adaptee
Class Adapter
interface Target
Class client
client..> Adapter
Adapter --|> Adaptee
Adapter ..|> Target
interface Target{
request():void
}
Class Adapter{
request():void
}
Class Adaptee{
specificRequest():void
}
@enduml | false | true | false | false | class |
db94efe259d138d695948894cd3c2eb08504ea5b | 7b7ef91db42f110fec095103554baafeb8ae129a | /docs/diagrams/VersionedNoteBookClassDiagram.puml | cf8474829f024d3d4f14dd20600204acd02a1988 | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | AY1920S1-CS2103T-F11-3/main | b0da7f58c9210e32ffecf565570a178fa2a0f46c | b77c6d74d74996fceddd5a88da557d98ccd7d12a | refs/heads/master | 2020-07-28T16:24:06.285463 | 2019-11-12T05:50:59 | 2019-11-12T05:50:59 | 209,462,481 | 0 | 6 | NOASSERTION | 2020-04-04T12:46:35 | 2019-09-19T04:29:39 | Java | UTF-8 | PlantUML | false | false | 630 | puml | @startuml
' hide the spot
hide circle
class NoteBook {
-notes : UniqueNoteList
-multipleSortByCond: MultipleSortByCond
--
+getSortByConds() : MultipleSortByCond
+setNote(target: Note, editedNote: Note): void
+getNotes(): UniqueNoteList
}
class VersionedNoteBook {
-undoStack: Stack<NoteBookWithCommand>
-redoStack: Stack<NoteBookWithCommand>
--
+commit(command: String): void
+undo(): void
+redo(): void
}
class NoteBookWithCommand {
-notebook: ReadOnlyNoteBook
-command: String
--
+getNoteBook(): ReadOnlyNoteBook
+getCommand(): String
}
VersionedNoteBook -|> NoteBook
VersionedNoteBook "1" *-- NoteBookWithCommand
@enduml
| false | true | false | false | class |
d13ecb3b1ab278201d4cd095a854c614cbad4003 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/implementation/commands.puml | 3af08f9cadcb064b5f29aba844b87b3f87f973ea | [
"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,325 | puml | @startuml need_to_find_id
package app::frontend{
class app::frontend.Textual << caseclass >>{
}
class app::frontend.InputPath << caseclass >>{
path:String
}
class app::frontend.Name << caseclass >>{
name:String
}
class app::frontend.OutputPath << caseclass >>{
path:String
}
class app::frontend.Verbose << caseclass >>{
}
class app::frontend.Help << caseclass >>{
}
class app::frontend.Github << caseclass >>{
path : String
}
abstract class app::frontend.Command << trait >>
}
app::frontend.Command <|-- app::frontend.Github
app::frontend.Command <|-- app::frontend.Help
app::frontend.Command <|-- app::frontend.Verbose
app::frontend.Command <|-- app::frontend.OutputPath
app::frontend.Command <|-- app::frontend.Name
app::frontend.Command <|-- app::frontend.InputPath
app::frontend.Command <|-- app::frontend.Textual
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 | class |
6f375649bb1cfddb6234f3811e45156fd5a9d0d6 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-class-journalpost-all.iuml | b65327bb8574fc7cd608a3ea664c0952f03aeaa2 | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 1,468 | iuml | @startuml
class Sakarkiv.Journalpost <Registrering> {
+journalaar : integer [0..1]
+journalsekvensnummer : integer [0..1]
+journalpostnummer : integer [0..1]
+journalposttype : Journalposttype
+journalstatus : Journalstatus
+journaldato : date
+dokumentetsDato : date [0..1]
+mottattDato : date [0..1]
+sendtDato : date [0..1]
+forfallsdato : date [0..1]
+offentlighetsvurdertDato : date [0..1]
+antallVedlegg : integer [0..1]
+utlantDato : date [0..1]
+utlaantTil : string [0..1]
+referanseUtlaantTil : SystemID [0..1]
+journalenhet : string [0..1]
+elektroniskSignatur : ElektroniskSignatur [0..1]
-- Registrering --
+arkivertDato : datetime [0..1]
+arkivertAv : string [0..1]
+referanseArkivertAv : SystemID [0..1]
+kassasjon : Kassasjon [0..1]
+skjerming : Skjerming [0..1]
+gradering : Gradering [0..1]
+referanseArkivdel : SystemID [0..1]
+registreringID : string [0..1]
+tittel : string
+offentligTittel : string [0..1]
+beskrivelse : string [0..1]
+noekkelord : string [0..*]
+forfatter : string [0..*]
+dokumentmedium : Dokumentmedium [0..1]
+oppbevaringssted : string [0..*]
+virksomhetsspesifikkeMetadata : any [0..1]
-- Arkivenhet --
+systemID : SystemID [0..1]
+endretDato : datetime [0..1]
+opprettetDato : datetime [0..1]
+opprettetAv : string [0..1]
+endretAv : string [0..1]
+referanseOppdatertAv : SystemID [0..1]
+referanseOpprettetAv : SystemID [0..1]
}
@enduml
| false | true | false | false | class |
75e6c92949e647f2045a0a7c55b58c4d6846e923 | 54ebd9eb2ddadc17b215617d96fac1f93f4acfef | /creational/4-builder/builder-furniture-complete.puml | c501dab327f1fc1b257aba4d0955a7d7cbd05df5 | [] | no_license | cesarkohl/design-patterns | acb42191662c141f064d9c90426dfd4491d43dfe | 991f83d0076b0a69e9d6b7c1163cf49fde3bfcbf | refs/heads/main | 2023-06-11T07:16:18.484116 | 2023-05-28T14:41:01 | 2023-05-28T14:41:01 | 199,520,479 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,122 | puml | @startuml
'Too many constructor parameters
'In most cases most of the parameters will be unused,
'making the constructor calls pretty ugly.
note as n1
const builder = new IkeaChairBuilder();
const director = new ChairCreator(builder);
director.createChair();
const chair: IkeaChair = builder.getChair();
end note
class ChairCreator {
- builder: ChairBuilder;
+ constructor(builder: ChairBuilder) {}
+ createChair(type: string = "ikea") {}
}
interface ChairBuilder {
+ reset(): void;
+ buildStepA(): void;
+ buildStepB(): void;
+ buildStepZ(): void;
}
class IkeaChairBuilder implements ChairBuilder {
- result: IkeaChair;
+ reset() {}
+ buildStepA() {}
+ buildStepB() {}
+ buildStepZ() {}
+ getChair(): IkeaChair {}
}
class IkeaChair {}
class TokStokChairBuilder implements ChairBuilder {
- result: TokStokChair;
+ reset() {}
+ buildStepA() {}
+ buildStepB() {}
+ buildStepZ() {}
+ getChair(): TokStokChair {}
}
class TokStokChair {}
ChairCreator <.. ChairBuilder
IkeaChairBuilder o-- IkeaChair
TokStokChairBuilder o-- TokStokChair
@enduml | false | true | false | false | class |
88260e4034cfe33e03a11ed83d780ffb87ddf53a | 0992a598a77d620c86b163e92c2a0259e1c5efe1 | /docs/sprint3/diagrams/CategoryTreeAggregateHypothesis.puml | 7631504baf99a509e51ba92316ed716327dd2025 | [] | no_license | dev-rbatista/Tutorial_Local_Smoke_Test_with_Docker_Containers-Gradle | a78f2c5a85e72035db2091e79b8c75ddfff8c7fb | cad9b52d66a2f91c93919feaee5250303d230752 | refs/heads/master | 2023-06-17T23:27:34.990780 | 2021-07-15T15:36:57 | 2021-07-15T15:36:57 | 386,325,650 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,043 | puml | @startuml
hide empty members
skinparam linetype ortho
package FamilyAggregate{
class Family <<Entity>> <<Root>> {
}
}
package PersonAggregate {
class Person <<Entity>> <<Root>> {
}
}
package CategoryTreeAggregate {
class CategoryTree <<Entity>> <<Root>> {
}
interface Category <<Entity>> {
}
class StandardCategory <<Entity>> {
}
class CustomCategory <<Entity>> {
}
}
class FamilyName <<ValueObject>> {
}
class RegistrationDate <<ValueObject>> {
}
class FamilyID <<ValueObject>> <<ID>> {
}
class Email <<ValueObject>> <<ID>> {
}
class Relation <<ValueObject>> {
}
class RelationDesignation <<ValueObject>> {
}
class VATnumber <<ValueObject>> {
}
class Name <<ValueObject>> {
}
class PhoneNumber <<ValueObject>> {
}
class BirthDate <<ValueObject>> {
}
class Address <<ValueObject>> {
}
class CategoryDesignation <<ValueObject>> {
}
class CategoryID <<ValueObject>> <<ID>> {
}
'Family
Family "1" --> "1" FamilyName
Family "1" --> "1" RegistrationDate
Family "1" --> "ID\n1" FamilyID
Family "1" --down-> "admin 1" Email
Family --> "1..* familyMembers" Email
'Person
Person "1" --> "1 ID" Email
Person "1" --> "0..* emails" Email
Person "1" -> "0..*" Relation
Relation "1" --> "1" RelationDesignation
Person "1" --> "1" VATnumber
Person "1" --> "1"Name
Person "1" --> "1" PhoneNumber
Person "1" --> "1" BirthDate
Person "1" ---> "1" Address
'CategoryTree
CategoryTree "1" --> "1 family" FamilyID
StandardCategory -.|> Category
CustomCategory -.|> Category
CategoryTree "1" -up-> "0..*" Category
StandardCategory "1" ---> "0..1 parentID" CategoryID
StandardCategory "1" ---> "1 ID" CategoryID
StandardCategory "1" --> "1" CategoryDesignation
CustomCategory "1" ---> "0..1 parentID" CategoryID
CustomCategory "1" ---> "1 ID" CategoryID
CustomCategory "1" --> "1" CategoryDesignation
'Note
Note as N1
- Family tem emails dos family members e email do admin;
- CategoryTree tem FamilyID que liga à sua familia;
- A partir do root no CategoryTreeAggregate têm-se acesso às categorias da família
end Note
@enduml | false | true | true | false | class |
f01048694a084f32d29728a1490bd89d27577cc4 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.puml | 150414a802cd096508d1eb06355e6b163ff54d31 | [] | 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 | 299 | puml | @startuml
class TMP_ExampleScript_01 {
+ isStatic : bool
Awake() : void
Update() : void
}
enum objectType {
TextMeshPro= 0,
TextMeshProUGUI= 1,
}
MonoBehaviour <|-- TMP_ExampleScript_01
TMP_ExampleScript_01 --> "ObjectType" objectType
TMP_ExampleScript_01 +-- objectType
@enduml
| false | true | false | false | class |
a9039fa8c75899d96f90cf59e16545b1821b1986 | eace5cc91d30597da909131cd33f752061873905 | /docs/set-image.puml | 549b5e83c06b06e51a8e53926a3a1c3f5a4c22fd | [
"MIT"
] | permissive | pcandido/ms-account | 60d78945ea87e05093d8d7a86497e60a6a75c51c | 19ac509b5f7eac3e40f08e9d60bfd82cd00033a3 | refs/heads/main | 2023-07-09T22:50:57.735840 | 2021-08-17T01:20:31 | 2021-08-17T01:20:31 | 338,481,352 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 597 | puml | @startuml "set-image"
package controllers {
[SetImageController] -up-> () Validator
[setImageValidator] -.-> () Validator
}
package domain {
() SetImage
}
package usecase {
() UpdateAccountRepository <-- [SetImageUsecase]
() ImageResizer <-- [SetImageUsecase]
() ImagePersister <-- [SetImageUsecase]
}
package gateway {
[AccountMongoRepository]
[JimpAdapter]
[S3Adapter]
}
SetImageController --> SetImage
SetImageUsecase -.-> SetImage
AccountMongoRepository -.-> UpdateAccountRepository
JimpAdapter -.-> ImageResizer
S3Adapter -.-> ImagePersister
@enduml
| false | true | false | false | uml-unknown |
0ccf1eb485f063f99326662e28914f8e2fcdd313 | 8b899ba8220c247a9cce52ee728717afa31faf42 | /src/client_cash_register.puml | cf4d20e8ac3bc1fa5b0bb639f2ce8e8d3a0be019 | [] | no_license | FerryTix/diagrams | 5313dce8043080074c4097bd4b0e0533a78a1019 | db4a2c2b99f4e4e273ef9b5fd47f7fdef9e5e319 | refs/heads/main | 2023-04-18T03:34:17.313112 | 2021-05-03T19:22:08 | 2021-05-03T19:22:08 | 341,652,352 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 368 | puml | @startuml
skinparam linetype ortho
skinparam monochrome true
' elft to right direction
title: Client Processes: Cash Register
control "Client Controller" as cc
queue "Cash Register\nMessage Queue" as crmq
control "Cash Register Controller" as cr
cr --> crmq: retrieve command
cc -> crmq: write command
cr -> crmq: write payment
cc <-- crmq: retrieve payment
@enduml | false | true | false | false | sequence |
d3a23c6e0c773eb489c5903cfd8509c50ef7c1ea | 1b71391fdddd0ee748669a6a4badfcd69347c281 | /src/main/java/system/controller/tools/tools.plantuml | cca8babf6950aa930d964587d53dfda9177049e2 | [] | no_license | berl-a/DiplomaBackend | e809f2257c059314f310d4a6e8195b23831d9eda | d6e65609133ff93b2b275a1eb0496e9e6ce790ce | refs/heads/master | 2020-04-01T06:47:56.459540 | 2019-01-02T18:22:43 | 2019-01-02T18:22:43 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 602 | plantuml | @startuml
title __TOOLS's Class Diagram__\n
package system.controller {
package system.controller.tools {
class DataToolkit {
{static} + getUniqueId()
{static} + convertToJsonObject()
{static} + convertToJsonArray()
{static} + objectToByteArray()
{static} + byteArrayToObject()
{static} + areListsTheSame()
}
}
}
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 |
09934276204fe19ea459c9b1e68ea69fdde0a1fe | e5b86259b1589f34705b355d5f749ac3670f6700 | /design/scheme_workflow_scheme_execution_initialization.plantuml | 1e340375b9a7479f03741f339ed48f144e2d7877 | [] | no_license | Aasit/DISCOUNT--SRV-I | 6bf526bc51955a9f35fe33dd0397df3e36fa0a8c | 3e806215f26797feb4a70c9a2f7475a44fe55e3c | refs/heads/master | 2016-09-01T15:32:38.413708 | 2015-12-01T12:15:41 | 2015-12-01T12:15:41 | 47,097,224 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,625 | plantuml | @startuml
' Scheme Execution Initialization Phase
title Scheme Simulation / Execution\n __Initialization Phase__
' Define all actors and entities
actor "Simulation Initiator" as FE
control "controllers/simulation.php" as SC
entity "lib/Akzo/Scheme/Service.php" as SS
box "Scheme Execution Service" #LightBlue
entity "lib/Akzo/Scheme/ExecService.php" as ES
entity "lib/Akzo/Scheme/Cache.php" as EC
end box
' Activate Always active entities
activate EC
' Ajax Request from Scheme Simulation Page to get Scheme Execution Result or to start a Scheme Execution if not started
FE -> SC : //Initiate Scheme Execution//\n(\n <code>, \n <execution data type (targets|actuals)> \n [, <group Dealers By Credit Code>]\n)
note left: AJAX Request
activate SC
SC -> SS : getSchemeExecutionResult\n(\n <code>, \n <execution data type (targets|actuals)> \n [, <group Dealers By Credit Code>]\n)
activate SS
SS -> ES : checkExecutionStatus\n(\n <code>, \n <execution data type (targets|actuals)> \n)
activate ES
' Build Scheme Execution related cache keys
note over ES
Build 3 cache storage keys for <code> + <execution data type>:
execution status key
scheme::<code>::EXECUTE_<execution data type>_STATUS
execution cumulated result key
scheme::<code>::EXECUTE_<execution data type>_CUMULATED_RESULT
execution per-dealer result key
scheme::<code>::EXECUTE_<execution data type>_PER_DEALER_RESULT
end note
ES -> ES : _buildExecutionResultKeys\n(\n <code>, \n <execution data type (targets|actuals)> \n)
' Get scheme execution result if it exists in cache or else return not started flag
ES -> EC : keyExists(<execution cumulated result key>)
ES <- EC : true / false
alt Cumulated Result Key Exists
ES -> EC : getValue(<execution status key>)
ES <- EC : <(string) Execution Status>
ES -> EC : getMap(<execution per-dealer result>)
ES <- EC : <(assoc. array) Per-Dealer Result>
ES -> EC : getValue(<execution cumulated result>)
ES <- EC : <(json encoded string) Cumulated Result>
SS <- ES : array\n(\n status => <(string) Execution Status>\n newData => <(assoc. array) Per-Dealer Result>\n cumulatedData => <(assoc. array) Cumulated Result>\n)
else Cumulated Result Key Does Not Exist
SS <- ES : array\n(\n status => \Akzo\Scheme\ProcessStatus::NOT_STARTED \n)
end
deactivate ES
' Set Execution Action in Cache if execution is not started for this scheme code and execution data type
alt if (<Execution Status> == \Akzo\Scheme\ProcessStatus::NOT_STARTED \n)
SS -> ES : setSchemeAction\n(\n <code>, \n <execution data type (targets|actuals)>\n <dealerOffset = 0>\n)
activate ES
ES -> ES : Build cache key for Scheme Execution Action\n scheme::<code>::EXECUTE_<execution data type>_ACTION
ES -> EC : deleteKey(\n scheme::<code>::EXECUTE_<execution data type>_ACTION\n)
note over ES
Build Scheme Execution Action map
array(
"code" => <code>,
"type" => <execution data type>,
"dealerOffset" => <execution dealer offset>
)
end note
ES -> EC : setMap(<Scheme Execution Map>)
SS <- ES : true / false
deactivate ES
SC <- SS : array\n(\n status => \Akzo\Scheme\ProcessStatus::JUST_STARTED \n)
else
SC <- SS : array\n(\n status => <(string) Execution Status>\n newData => <(assoc. array) Per-Dealer Result>\n cumulatedData => <(assoc. array) Cumulated Result>\n)
end
deactivate SS
FE <- SC : Simulation Status and other results
deactivate SC
@enduml
| false | true | false | false | usecase |
5c209fd0ac7524561aebffbe9db0e325af2b0548 | 1ee67d6ebb6efa5b6e6c2838b736a199a4036103 | /src/main/java/ex41/Main.puml | 7b291ccfbfd5f0bf6e2201a0e29c11fbc83df85c | [] | no_license | tkommoju3/kommoju-cop3330-assignment3 | 4959824b3d658ba9b2b096731d3389f413dda2ae | 11ce3ab1095e2cb0ef44b78ad57a3e0df92994d9 | refs/heads/main | 2023-05-31T06:52:27.925780 | 2021-06-23T21:19:49 | 2021-06-23T21:19:49 | 377,306,012 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 123 | puml | @startuml
class App
{
void main()
}
class Main
{
ArrayList<String> readPeople()
void outputPeople()
}
App o->Main
@enduml | false | true | false | false | class |
152af2b722f28fc048f88c731c1812c454c75607 | f970d87e9125bbfd8f445f7b68af7fad87be5ff4 | /diagramme/test.puml | f39da599b75efea0cda84b2f6ba7f0de76f4b4fa | [] | no_license | redhell/loadmanagement-server | 94d279e172335411e6cc5f2fc070d36d5e2cd8b5 | 2387f0f01218061dc88db865cff55f84cd1c3bd0 | refs/heads/master | 2023-06-02T04:13:13.216276 | 2021-06-18T11:36:02 | 2021-06-18T11:36:02 | 309,963,557 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,248 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class AbstractConsumer {
-name : String
-voltage : double
-currentLoad : double
}
class Anschluss {
-loadStrategy : LoadStrategy
-softLimit : double
-hardLimit : double
-chargeboxList : List
-consumerList : List
-maxLoad : double
-currentLoad : double
-id : long
-name : String
}
class Consumer {
-maxLoad : double
}
class ChargeBox {
-priority : int
-evseid : String
-startURL : URL
-stopURL : URL
-idleConsumption : double
-emaid : String
-charging : boolean
-isConnected : boolean
}
class ConsumptionPoint {
-time : Instant
-name : String
-consumption : double
-measurand : String
}
abstract class Strategy <<Abstract>> {
-loadStrategy : LoadStrategy
-anschluss : Anschluss
+{abstract} balance()
}
class FirstInFirstOutStrategy
class LastInFirtOutStrategy
AbstractConsumer <|-- Consumer
AbstractConsumer <|-- ChargeBox
Anschluss -- LoadStrategy
Anschluss "1" -- Consumer : hat >
Anschluss "1" -- ChargeBox : hat >
Strategy <|-- FirstInFirstOutStrategy
Strategy <|-- LastInFirtOutStrategy
enum LoadStrategy << Enum >> {
NONE
LIFO
FIFO
SIMPLE
}
@enduml | false | true | false | false | class |
11c9506df9e0886450b3930eebd6177ea58e0f17 | d8c41d06c6d02ad1fd5adcd6d08d2f6e8c826b07 | /src/main/scala/se/joelabs/fluttercookie/domain/domain.puml | 1c8c978edfb0292dc9c5af411269ee1af467981f | [] | no_license | joelbinn/scala-jpa-springboot-ddd-style-example | 7c6d428df1f158e36800b1f90810940d2d928d82 | 22c6a26588fdeb7e1e7d2af104363883c1d05751 | refs/heads/master | 2021-08-23T19:55:40.850808 | 2017-12-06T09:22:07 | 2017-12-06T09:22:07 | 93,556,828 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 412 | puml | @startuml
class User {
signum: String
firstName: String
lastName: String
hasWriteAccessTo(resource: Resource): boolean
hasReadAccessTo(resource: Resource): boolean
}
class UserRole {
name: String
}
class Resource {
id: Long
path: String
}
User "0..n" -- "0..n" UserRole
UserRole "0..n" -- "0..n" Resource
(UserRole, Resource) .. Permission
class Permission {
isWritable():boolean
}
@enduml | false | true | false | false | class |
a7b9a19e33ca11c9d9e07a3e3eca72a99ff92a3d | 065da8d391be577d7fc71aa024ab81e35c39618b | /PlantUml/Dolphin.Common/DolphinUnitTest.puml | c63328d8eebdc47f54b054f0a46683ac840b8299 | [] | no_license | leoshiang/Dolphin.CSharp | 1fc921ea04a4a721b49557748f7ca15f89f9e414 | 61438432f088c6b380356afdcba4c627985fa152 | refs/heads/master | 2023-04-17T03:59:19.871766 | 2023-03-30T02:03:42 | 2023-03-30T02:03:42 | 204,225,824 | 0 | 0 | null | 2022-12-08T04:32:20 | 2019-08-25T00:02:55 | C# | UTF-8 | PlantUML | false | false | 44 | puml | @startuml
class DolphinUnitTest {
}
@enduml
| false | true | false | false | class |
d10178218bb957c66b4ba279a6645f6f2869df7b | b615d963ae1cfa22289775c561dd073b55a71ebd | /docs/uml-class-diagrams/display02/helper/TrackDataPlotter/TrackDataPlotter.puml | ca69e89a27c2f7ba18686ad4d2b2c6f7e6b00995 | [] | no_license | elilley15/csi-3370-software-project | 8062dddf435ab0c7941acdf03225f84c18457947 | d2642cf649dabeafd6d9753c483b9df265d85118 | refs/heads/main | 2023-01-18T15:48:03.237629 | 2020-11-28T21:24:10 | 2020-11-28T21:24:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 610 | puml | @startuml TrackDataPlotter
package edu.oakland.helper.display02 {
class TrackDataPlotter {
- TrackData data
- XYDataset points
- XYDataset line
- JFreeChart chart1
- JFreeChart chart2
- XYPlot plot
- ChartPanel chartPanel1
- ChartPanel chartPanel2
__
+ TrackDataPlotter(TrackData data)
.. Use Case 1 ..
- XYSeries getTrackData()
- XYSeries calculateLine(int[] x, int[] y)
- int[] extractLatFromTrackData(TrackData data)
- int[] extractLngFromTrackData(TrackData data)
}
}
@enduml
| false | true | false | false | class |
b7cc21efbc527c80cc6e87a4cd0ceec35566ce54 | 897c5f0768d85d6070cbac83453eaeda84f86ab7 | /SELAIN SISTEM/UML/SEQUENCE/kepala/UploadPersetujuanDisposisiBKA.puml | c5f493fa71af94682ae08ccfefb256adcdf3e448 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | fiqihrosady/sistem_kp | b593e68eda63e3c4b2953447a2aa8f25f33f9921 | 7b9060a89f852577a6f4c1ea2596b59beb5e5b77 | refs/heads/master | 2020-09-27T00:03:37.042300 | 2019-12-05T18:54:26 | 2019-12-05T18:54:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,527 | puml | @startuml
autonumber
hide footbox
title Mengupload Persetujuan Disposisi BKA
Actor Kepala
boundary Dashboard_V
boundary DisposisiBKA_V
boundary UploadDisposisiBKA_V
control Admin_C
control SuratDisposisi_C
Entity SuratDisposisi_E
Admin_C --> Dashboard_V: load->view()
Dashboard_V --> Kepala: Halaman Dashboard
Kepala --> Dashboard_V: klik menu Disposisi BKA
Dashboard_V --> SuratDisposisi_C: disposisibka()
SuratDisposisi_C --> SuratDisposisi_E:
SuratDisposisi_E --> SuratDisposisi_C:
SuratDisposisi_C --> DisposisiBKA_V: load->view()
DisposisiBKA_V --> Kepala: Halaman Disposisi BKA
Kepala --> DisposisiBKA_V: klik tombol Upload Disposisi BKA
DisposisiBKA_V --> SuratDisposisi_C: uploaddisposisibka()
SuratDisposisi_C --> UploadDisposisiBKA_V: load->view()
UploadDisposisiBKA_V --> Kepala: Halaman Upload File Persetujuan Disposisi BKA
Kepala --> UploadDisposisiBKA_V: Mengisi Inputan dan klik tombol upload
note right of Kepala
Inputan file Disposisi BKA lengkap
end note
UploadDisposisiBKA_V --> SuratDisposisi_C: uploaddisposisibka()
SuratDisposisi_C --> SuratDisposisi_E:
alt isValid() case
SuratDisposisi_E --> SuratDisposisi_C: isValid()
SuratDisposisi_C --> DisposisiBKA_V: load->view()
DisposisiBKA_V --> Kepala: Halaman Disposisi BKA
else isInvalid() case
SuratDisposisi_E --> SuratDisposisi_C: isValid()
SuratDisposisi_C --> UploadDisposisiBKA_V: load->view()
UploadDisposisiBKA_V --> Kepala: Halaman Upload Disposisi BKA
end
@enduml | false | true | false | false | sequence |
28af2517be6ce3d5c440de59d30530d63cc9564e | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Utilities/NotificationUtilities.puml | cec487d34b6464622bcf3a3043535b7907db28ed | [] | 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 | 278 | puml | @startuml
class NotificationUtilities <<static>> {
+ {static} CreateNotificationsPlayable(graph:PlayableGraph, markers:IEnumerable<IMarker>, go:GameObject) : ScriptPlayable<TimeNotificationBehaviour>
+ {static} TrackTypeSupportsNotifications(type:Type) : bool
}
@enduml
| false | true | false | false | class |
319902fa808b7b4ab9ea827b59b5be60eb3109ce | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AssociateRoleUpdate.puml | 48ff82a6fcf4f976455af5bed50ff571bed5f16f | [] | 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 | 383 | 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 AssociateRoleUpdate [[AssociateRoleUpdate.svg]] {
version: Long
actions: [[AssociateRoleUpdateAction.svg List<AssociateRoleUpdateAction>]]
}
@enduml
| false | true | false | false | class |
383007757ea9d3fb35bf831bb6ef344e3e75148d | 3cdb6adfdaed54bdf50c6adf89ed9d1653d637a3 | /app/src/main/java/com/shuyun/androidnotes/components/lifecycle/lifecycle_livedata.puml | 541a6838d305a161515e0640ec767eff3abfcee5 | [] | no_license | Shuyun6/AndroidNotes | c3b26a48239a9f2397fdf9d057d7d9dd27df2417 | 5573b4749f7ecce77997eb8166a4d651b93fdfe4 | refs/heads/master | 2020-03-19T11:18:36.156844 | 2020-03-09T15:06:15 | 2020-03-10T15:07:34 | 136,442,024 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,413 | puml | @startuml
abstract class LiveData<T>{
- mDataLock : Object
- NOT_SET : Object
- mObservers : SafeIterableMap<Observer<T>, ObserverWrapper>
- mActiveCount : int
- mData : Object
- mPendingData : Object
- mDispatchingValue : boolean
- mDispatchingInvalidated : boolean
- mPostValueRunnable : Runnable
- considerNotify(observer : ObserverWrapper)
- dispatchingValue(initiator : ObserverWrapper)
+ observe(owner : LifecycleOwner, observer : Observer<T>)
+ observeForever(observer : Observer<T>)
+ removeObserver(observer : Observer<T>)
+ removeObservers(owner : LifecycleOwner)
# postValue(value : T)
# setValue(value : T)
+ getValue() : T
# onActive()
# onInactive()
+ hasObservers() : boolean
+ hasActiveObservers() : boolean
}
class LifecycleBoundObserver{
mOwner : LifecycleOwner
LifecycleBoundObserver(owner : LifecycleOwner, observer : Observer<T>)
shouldBeActive() : boolean
onStateChanged(source : LifecycleOwner, event : Lifecycle.Event) : void
isAttachedTo(owner : LifecycleOwner) : boolean
detachObserver()
}
abstract class ObserverWrapper{
mObserver : Observer<T>
mActive : boolean
mLastVersion : int
ObserverWrapper(observer : Observer<T>)
shouldBeActive() : boolean
isAttachedTo(owner : LifecycleOwner) : boolean
activeStateChanged(newActive : boolean)
}
class MutableLiveData<T>{
+ postValue(value T)
+ setValue(value T)
}
interface Observer<T>{
onChanged(t : T)
}
abstract class ComputableLiveData<T>{
- mExecutor : Executor
- mLiveData : LiveData<T>
+ ComputableLiveData()
+ ComputableLiveDate(executor : Executor)
+ getLiveData() : LiveData<T>
+ invalidate()
# compute() : T
}
class MediatorLiveData{
- mSources : SafeIterableMap<LiveData<?>, Source<?>>
+ addSource(source : LiveData, onChanged : Observer)
+ removeSource(toRemote : LiveData<S>)
# onActive()
# onInactive()
}
class Source<V>{
mLiveData : LiveData<V>
mObserver : Observer<V>
Source(liveData : LiveData<V>, observer : Observer<V>)
plug()
unplug()
onChanged(v : V)
}
class Transformations{
+ map(source : LiveData, func : Function) : LiveData<Y>
+ switch(trigger : LiveData, func : Function) : LiveData<Y>
}
LiveData +-> LifecycleBoundObserver
ObserverWrapper <|.. LifecycleBoundObserver
LiveData ..> LifecycleOwner
LiveData ..> Observer
LiveData <|-- MutableLiveData
ComputableLiveData -> LiveData
MediatorLiveData +-> Source
MutableLiveData <|-- MediatorLiveData
Transformations -> LiveData
@enduml | false | true | false | false | class |
d14cb99bec22d1e161ea4559911eb265ee467be3 | ec4ab8a3c9fb2750294261a93939ce679a63303e | /AirportManager-backend/src/main/java/pl/edu/uj/ii/ionb/airportmanager/backend/entities/entities.plantuml | 533dffc8293b86557372269d725fec234f1f612b | [] | no_license | winostworzylbog/IONB | 3ed0dbe064866d7d0a3c90eb4d186a4f7ef627d0 | 30dbd315bf1357e419f285d28bf32d4f2cfb4af3 | refs/heads/origin/master | 2022-12-21T00:15:30.682166 | 2020-01-24T16:37:05 | 2020-01-24T16:37:05 | 236,040,144 | 0 | 0 | null | 2022-12-16T00:40:51 | 2020-01-24T16:32:28 | Java | UTF-8 | PlantUML | false | false | 3,876 | plantuml | @startuml
title __ENTITIES's Class Diagram__\n
namespace pl.edu.uj.ii.ionb.airportmanager.backend.entities {
class pl.edu.uj.ii.ionb.airportmanager.backend.entities.Airplane {
- capacity : int
- flights : List<Flight>
- id : Long
- name : String
{static} - serialVersionUID : long
- type : String
+ equals()
+ getCapacity()
+ getFlights()
+ getId()
+ getName()
+ getType()
+ hashCode()
+ setCapacity()
+ setFlights()
+ setId()
+ setName()
+ setType()
+ toString()
}
}
namespace pl.edu.uj.ii.ionb.airportmanager.backend.entities {
class pl.edu.uj.ii.ionb.airportmanager.backend.entities.Destination {
- city : String
- code : String
- country : String
- id : Long
- incoming : List<Flight>
- outcoming : List<Flight>
{static} - serialVersionUID : long
+ equals()
+ getCity()
+ getCode()
+ getCountry()
+ getId()
+ hashCode()
+ setCity()
+ setCode()
+ setCountry()
+ setId()
+ toString()
}
}
namespace pl.edu.uj.ii.ionb.airportmanager.backend.entities {
class pl.edu.uj.ii.ionb.airportmanager.backend.entities.EntityDTOTransformer {
{static} + airplaneConvert()
{static} + airplaneTOConvert()
{static} + destinationConvert()
{static} + destinationTOConvert()
{static} + flightConvert()
{static} + flightListConvert()
{static} + flightTOConvert()
{static} + stewardConvert()
{static} + stewardListConvert()
{static} + stewardTOConvert()
{static} + stewardTOListConvert()
}
}
namespace pl.edu.uj.ii.ionb.airportmanager.backend.entities {
class pl.edu.uj.ii.ionb.airportmanager.backend.entities.Flight {
- arrivalTime : Timestamp
- departureTime : Timestamp
- id : Long
- stewardList : List<Steward>
+ equals()
+ getAirplane()
+ getArrivalTime()
+ getDepartureTime()
+ getId()
+ getOrigin()
+ getStewardList()
+ getTarget()
+ hashCode()
+ setAirplane()
+ setArrivalTime()
+ setDepartureTime()
+ setId()
+ setOrigin()
+ setStewardList()
+ setTarget()
+ toString()
}
}
namespace pl.edu.uj.ii.ionb.airportmanager.backend.entities {
class pl.edu.uj.ii.ionb.airportmanager.backend.entities.Steward {
- firstName : String
- id : Long
- lastName : String
+ Steward()
+ equals()
+ getFirstName()
+ getId()
+ getLastName()
+ hashCode()
+ setFirstName()
+ setId()
+ setLastName()
+ toString()
}
}
pl.edu.uj.ii.ionb.airportmanager.backend.entities.Airplane .up.|> java.io.Serializable
pl.edu.uj.ii.ionb.airportmanager.backend.entities.Destination .up.|> java.io.Serializable
pl.edu.uj.ii.ionb.airportmanager.backend.entities.Flight .up.|> java.io.Serializable
pl.edu.uj.ii.ionb.airportmanager.backend.entities.Flight o-- pl.edu.uj.ii.ionb.airportmanager.backend.entities.Airplane : airplane
pl.edu.uj.ii.ionb.airportmanager.backend.entities.Flight o-- pl.edu.uj.ii.ionb.airportmanager.backend.entities.Destination : origin
pl.edu.uj.ii.ionb.airportmanager.backend.entities.Flight o-- pl.edu.uj.ii.ionb.airportmanager.backend.entities.Destination : target
pl.edu.uj.ii.ionb.airportmanager.backend.entities.Steward .up.|> java.io.Serializable
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 |
8ebfa4ec0fb5b74871a014377239685d0643eff1 | ff8b4b0462ff47b8ad3a1047b2a05029624b1f16 | /Diagramms/LoginSequenceDiagram.puml | 09d91d0a49b40d45c829f23af6cb6c879449644a | [] | 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,366 | puml | @startuml
autonumber
activate LoginUI
LoginUI -> LoginController : login()
deactivate LoginUI
activate LoginController
LoginController -> UserFaçade : login ( pseudo:String, password : String)
activate UserFaçade
UserFaçade --> DAOFactoryMySQL : new()
activate DAOFactoryMySQL
DAOFactoryMySQL --> UserFaçade : AbstractFactoryDAO
UserFaçade ->DAOFactoryMySQL : createUserDAO()
activate UserDAOMySQL
DAOFactoryMySQL --> UserDAOMySQL : new()
UserDAOMySQL -->UserFaçade : UserDA0
UserFaçade -> UserDAOMySQL : login(pseudo:String, password:String)
activate MySQLConnection
UserDAOMySQL -> MySQLConnection : createStatement()
MySQLConnection --> UserDAOMySQL : true
deactivate MySQLConnection
activate User
UserDAOMySQL --> User : new()
User --> UserDAOMySQL : User
deactivate User
UserDAOMySQL --> UserFaçade : User
deactivate UserDAOMySQL
deactivate DAOFactoryMySQL
UserFaçade->UserFaçade : getInstance().setConnected(User: User)
UserFaçade --> LoginController
LoginController --> UserFaçade : isConnected()
alt successful case
UserFaçade -> LoginController : true
LoginController -> router.Router : getInstance().activate("HomePage")
else
UserFaçade -> LoginController : false
LoginController -> LoginController : display("Wrong combination of password and pseudo")
end
deactivate UserFaçade
deactivate LoginController
@enduml | false | true | true | false | sequence |
9d5d1963bf1776808ffa95cf9591d7ec0b4c5ccb | 8a5ef01ec9811ae65fdf78600b3fe529348fafa9 | /py_proto/docs/msr_design.puml | 2f86047c9c1e5108a9f9afc3fc802d3701d733cc | [] | no_license | ltukezl/GBA-emulator | 78c1889ba6bd05344b0b60024e5e05b2eac18d45 | e36d7c642c385b93eefca6600194a8d61ed64830 | refs/heads/master | 2023-06-09T05:57:36.825181 | 2023-06-04T07:50:22 | 2023-06-04T07:50:22 | 50,234,651 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 55 | puml | @startuml
title MSR class design
class OpCode
@enduml | false | true | false | false | class |
e4080ec7fa9c0f2dc3d9577de321ea23b5d6a8ca | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/behavioral/Command1.puml | fbb9987ec6bb96036b1ad922dc6d5e8f8adbdb8f | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 309 | puml | @startuml
scale 1024 height
class Client{
}
class Invoker{
}
interface Command{
+execute()
}
class ConcreteCommand{
+execute()
}
class Receiver{
+action()
}
Client --> Invoker
Client ..> ConcreteCommand
Client --> Receiver
Command --* Invoker
ConcreteCommand --|> Command
ConcreteCommand --> Receiver
@enduml | false | true | false | false | class |
2a49e8188c473456c90294985484cec7641aa63f | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitKeyReference.puml | a433c751f2f404d4a1abb61c71dbe3f753fa4566 | [] | 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 | 13,355 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface BusinessUnitKeyReference [[BusinessUnitKeyReference.svg]] extends KeyReference {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
key: String
}
interface KeyReference [[KeyReference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
key: String
}
interface BusinessUnit [[BusinessUnit.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[Address.svg List<Address>]]
shippingAddressIds: [[String.svg List<String>]]
defaultShippingAddressId: String
billingAddressIds: [[String.svg List<String>]]
defaultBillingAddressId: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[Associate.svg List<Associate>]]
inheritedAssociates: [[InheritedAssociate.svg List<InheritedAssociate>]]
parentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
topLevelUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface Division [[Division.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[Address.svg List<Address>]]
shippingAddressIds: [[String.svg List<String>]]
defaultShippingAddressId: String
billingAddressIds: [[String.svg List<String>]]
defaultBillingAddressId: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[Associate.svg List<Associate>]]
inheritedAssociates: [[InheritedAssociate.svg List<InheritedAssociate>]]
parentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
topLevelUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface InheritedAssociateRoleAssignment [[InheritedAssociateRoleAssignment.svg]] {
associateRole: [[AssociateRoleKeyReference.svg AssociateRoleKeyReference]]
source: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
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 BusinessUnitParentChangedMessage [[BusinessUnitParentChangedMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
oldParentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
newParentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface BusinessUnitParentChangedMessagePayload [[BusinessUnitParentChangedMessagePayload.svg]] {
type: String
oldParentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
newParentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
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 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]]
}
interface StagedQuote [[StagedQuote.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
customer: [[CustomerReference.svg CustomerReference]]
quoteRequest: [[QuoteRequestReference.svg QuoteRequestReference]]
quotationCart: [[CartReference.svg CartReference]]
validTo: DateTime
sellerComment: String
custom: [[CustomFields.svg CustomFields]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
BusinessUnitKeyReference --> BusinessUnit #green;text:green : "parentUnit"
BusinessUnitKeyReference --> BusinessUnit #green;text:green : "topLevelUnit"
BusinessUnitKeyReference --> Division #green;text:green : "parentUnit"
BusinessUnitKeyReference --> InheritedAssociateRoleAssignment #green;text:green : "source"
BusinessUnitKeyReference --> Cart #green;text:green : "businessUnit"
BusinessUnitKeyReference --> BusinessUnitParentChangedMessage #green;text:green : "oldParentUnit"
BusinessUnitKeyReference --> BusinessUnitParentChangedMessage #green;text:green : "newParentUnit"
BusinessUnitKeyReference --> BusinessUnitParentChangedMessagePayload #green;text:green : "oldParentUnit"
BusinessUnitKeyReference --> BusinessUnitParentChangedMessagePayload #green;text:green : "newParentUnit"
BusinessUnitKeyReference --> Order #green;text:green : "businessUnit"
BusinessUnitKeyReference --> QuoteRequest #green;text:green : "businessUnit"
BusinessUnitKeyReference --> Quote #green;text:green : "businessUnit"
BusinessUnitKeyReference --> StagedQuote #green;text:green : "businessUnit"
@enduml
| false | true | false | false | sequence |
58efac762d01b7456e9f6cc7c1ea70a373a567ab | 836688f2ee223924dc333e08467afb11d15f0518 | /plantuml/armes.plantuml | 3d02bd56d7380321001af7dc705b3291a54a80ee | [] | no_license | khadijaDhieb/Projet_Warriors_Java | b0085dc98083d3016b71de369d0b7edea02ae124 | 6ff5f601d88310982df99bff4fe44fb09100454c | refs/heads/master | 2022-09-18T14:56:17.495545 | 2020-06-03T09:20:46 | 2020-06-03T09:20:46 | 262,982,308 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,949 | plantuml | @startuml
title __ARMES's Class Diagram__\n
namespace com.projet_warriors {
namespace armes {
class com.projet_warriors.armes.Arme {
# forceAttaque : int
# nom : String
+ Arme()
+ getForceAttaque()
+ getNom()
+ interact()
+ setForceAttaque()
+ setNom()
+ toString()
}
}
}
namespace com.projet_warriors {
namespace armes {
class com.projet_warriors.armes.BouleDeFeu {
+ BouleDeFeu()
}
}
}
namespace com.projet_warriors {
namespace armes {
class com.projet_warriors.armes.Eclair {
+ Eclair()
}
}
}
namespace com.projet_warriors {
namespace armes {
class com.projet_warriors.armes.Epee {
+ Epee()
}
}
}
namespace com.projet_warriors {
namespace armes {
class com.projet_warriors.armes.Massue {
+ Massue()
}
}
}
namespace com.projet_warriors {
namespace armes {
class com.projet_warriors.armes.Sort {
# forceAttaque : int
# nom : String
+ Sort()
+ getForceAttaque()
+ getNom()
+ interact()
+ setForceAttaque()
+ setNom()
+ toString()
}
}
}
com.projet_warriors.armes.Arme .up.|> com.projet_warriors.Case
com.projet_warriors.armes.BouleDeFeu -up-|> com.projet_warriors.armes.Sort
com.projet_warriors.armes.Eclair -up-|> com.projet_warriors.armes.Sort
com.projet_warriors.armes.Epee -up-|> com.projet_warriors.armes.Arme
com.projet_warriors.armes.Massue -up-|> com.projet_warriors.armes.Arme
com.projet_warriors.armes.Sort .up.|> com.projet_warriors.Case
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 |
6764fa6d1a5dc5866475838f2ea1c7838696f7fe | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/training/intermediate/oop/demo/demo04_abstraction/interfaceDemo/interfaceDemo.plantuml | 128e5e1528811a995fcf99a55c301cec7abf332b | [
"Apache-2.0"
] | permissive | muame-amr/java-traininglabs | 987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83 | a93268f60e6a8491b1d156fae183a108ff0d9243 | refs/heads/main | 2023-08-06T10:04:57.996593 | 2021-09-28T11:21:00 | 2021-09-28T11:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,070 | plantuml | @startuml
title __INTERFACEDEMO's Class Diagram__\n
namespace global.skymind {
namespace training.intermediate.oop.demo.demo04_abstraction.interfaceDemo {
class global.skymind.training.intermediate.oop.demo.demo04_abstraction.interfaceDemo.InterfaceDemo {
{static} + main()
+ method1()
+ method2()
}
}
}
namespace global.skymind {
namespace training.intermediate.oop.demo.demo04_abstraction.interfaceDemo {
interface global.skymind.training.intermediate.oop.demo.demo04_abstraction.interfaceDemo.simpleInterface {
{abstract} + method1()
{abstract} + method2()
}
}
}
global.skymind.training.intermediate.oop.demo.demo04_abstraction.interfaceDemo.InterfaceDemo .up.|> global.skymind.training.intermediate.oop.demo.demo04_abstraction.interfaceDemo.simpleInterface
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 |
ce0875527c33192859104dc14a7cfc55296468a0 | 9a8d428acda08cfe34531b7834d6f77afd07ff72 | /diagrams/sequence_diagram_b.plantuml | c03bddac8e27bb060eb421f0442df819bf55820f | [] | no_license | fiuba/algo3_chess | f00e17f9671d249603bf21636e370c498144abd9 | 17d4c7917ea595634e38286ec8296d8348a11c11 | refs/heads/master | 2023-06-19T15:41:47.265906 | 2021-07-20T12:48:26 | 2021-07-20T13:44:36 | 387,790,300 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 415 | plantuml | @startuml
title: Pieza Negra en (3,4) puede comer a Pieza Blanca en (4,3)
":TestCase" -> ":Jugador": moverA(piezaNegra, p)
":Jugador" -> ":Tablero": moverA(piezaNegra, p)
":Tablero" -> ":Tablero": contenidoDe(p)
":Tablero" -> "piezaEnPosicion:Pieza": mismoColor(piezaNegra)
return [true]
":Tablero" -> ":Tablero": colocarEn(piezaNegra, p)
":Tablero" --> ":Jugador": true
":Jugador" --> ":TestCase": true
@enduml
| false | true | false | false | sequence |
cee4dca7355afe358b5fb841470d5d3706de9243 | 7a1ad09761a9607fa91422fa6464daed599090ff | /project_description/diagrams_src/OcenaMożliwościPrzeprowadzeniaSpotkania.puml | 14ff2e9de38cf9de1e1d5e6878e325170c792b8b | [] | no_license | michalMilewski-8/SmartBuilding_Agent_MiNI_Project | d0daa7f7ccbb286aa25d0bc79149485718cee4e9 | b196ec6129a57abc668132b0999e519bc149c11e | refs/heads/master | 2021-02-16T12:39:58.624684 | 2020-06-29T19:06:41 | 2020-06-29T19:06:41 | 245,006,263 | 0 | 0 | null | 2020-06-29T19:02:00 | 2020-03-04T21:20:03 | Python | UTF-8 | PlantUML | false | false | 395 | puml | @startuml
actor AgentCentralnyPlanujący
actor AgentPokojuSpotkań
actor AgenciSąsiadówPokoju
AgentCentralnyPlanujący->AgentPokojuSpotkań: meeting_score_request
opt
AgentPokojuSpotkań -> AgenciSąsiadówPokoju: temperature_at_request
AgenciSąsiadówPokoju -> AgentPokojuSpotkań: temperature_at_inform
end
AgentPokojuSpotkań -> AgentCentralnyPlanujący: meeting_score_inform
@enduml | false | true | true | false | sequence |
b4649dd532077a072f4f47d4f9363314f432dc4f | 41e335a2ded65f95ece1c413fe9d465df1d198b4 | /app/src/main/java/afkt/project/ui/ui.plantuml | 0b3d52a5c51e920ec719d1a3d883317f933080ae | [
"Apache-2.0"
] | permissive | tulensayyj/DevUtils | ea40e897de72b88591cc1f1cea798eb74175eda8 | 3bc39eaf343c811270bc01e223cd37e80db9e04c | refs/heads/master | 2022-11-27T05:08:28.115620 | 2020-07-27T13:24:50 | 2020-07-27T13:24:50 | 281,569,859 | 0 | 0 | Apache-2.0 | 2020-07-22T03:59:24 | 2020-07-22T03:59:23 | null | UTF-8 | PlantUML | false | false | 822 | plantuml | @startuml
title __UI's Class Diagram__\n
namespace afkt.project {
namespace ui {
class afkt.project.ui.ButtonItemActivity {
~ vid_bvr_recy : RecyclerView
+ getLayoutId()
+ initValues()
}
}
}
namespace afkt.project {
namespace ui {
class afkt.project.ui.ModuleActivity {
~ vid_bvr_recy : RecyclerView
+ getLayoutId()
+ initValues()
}
}
}
afkt.project.ui.ButtonItemActivity -up-|> afkt.project.base.app.BaseToolbarActivity
afkt.project.ui.ModuleActivity -up-|> afkt.project.base.app.BaseToolbarActivity
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 |
aa0be89f2a54a86af05f668967eaa501af4f2849 | 56c5dd9c1a24697ed5284ca1d23a5ba19c130210 | /spring-rabbitmq/src/main/resources/puml/spring-rabbitmq.puml | bce2ca06ad0e94f9aa6579cc4fa23ef0ad563a1e | [] | no_license | FIyingIdeal/MessageQueue | f38f05ef369c85ecbbedbbd8ac2118a09aef74d1 | b687e22e3f68d23ea6ec3ab848d1c07291f9d1f6 | refs/heads/master | 2022-06-23T14:35:14.943926 | 2020-10-20T02:48:26 | 2020-10-20T02:48:26 | 204,707,030 | 0 | 0 | null | 2022-06-17T03:26:59 | 2019-08-27T13:15:50 | Java | UTF-8 | PlantUML | false | false | 1,980 | puml | @startuml
interface ConnectionFactory {
}
interface RoutingConnectionFactory {
+ ConnectionFactory getTargetConnectionFactory(Object key);
}
abstract AbstractConnectionFactory {
}
class CachingConnectionFactory {
}
class LocalizedQueueConnectionFactory {
}
abstract AbstractRoutingConnectionFactory {
}
class SimpleRoutingConnectionFactory {
}
ConnectionFactory <|.. AbstractConnectionFactory
ConnectionFactory <|.. AbstractRoutingConnectionFactory
ConnectionFactory <|.. LocalizedQueueConnectionFactory
RoutingConnectionFactory <|.. AbstractRoutingConnectionFactory
RoutingConnectionFactory <|.. LocalizedQueueConnectionFactory
AbstractConnectionFactory <|-- CachingConnectionFactory
AbstractRoutingConnectionFactory <|-- SimpleRoutingConnectionFactory
/'MessageListenerContainer'/
interface MessageListenerContainer {
}
abstract AbstractMessageListenerContainer {
}
class SimpleMessageListenerContainer {
}
class DirectMessageListenerContainer {
}
class DirectReplyToMessageListenerContainer {
}
MessageListenerContainer <|.. AbstractMessageListenerContainer
AbstractMessageListenerContainer <|-- SimpleMessageListenerContainer
AbstractMessageListenerContainer <|-- DirectMessageListenerContainer
DirectMessageListenerContainer <|-- DirectReplyToMessageListenerContainer
/'RabbitListenerContainerFactory'/
interface RabbitListenerContainerFactory<C extends MessageListenerContainer> {
}
abstract AbstractRabbitListenerContainerFactory<C extends AbstractMessageListenerContainer> {
}
class SimpleRabbitListenerContainerFactory {
}
class MySimpleRabbitListenerContainerFactory {
}
class DirectRabbitListenerContainerFactory {
}
RabbitListenerContainerFactory <|.. AbstractRabbitListenerContainerFactory
AbstractRabbitListenerContainerFactory <|-- SimpleRabbitListenerContainerFactory
SimpleRabbitListenerContainerFactory <|-- MySimpleRabbitListenerContainerFactory
AbstractRabbitListenerContainerFactory <|-- DirectRabbitListenerContainerFactory
@enduml | false | true | false | false | class |
26c31ef3e1b4a58d421a734b9c45f10bf9d26ae2 | 57d87e8176550a727350382dc773b05afa0f0506 | /docs/diagram.puml | ff4f0180faea987d9211b5e09e57e157976a8560 | [
"MIT"
] | permissive | gumbo-millennium/plazacam | 42e74b3a69af2dde3f33fc64d44931fcc148c115 | cc5f365f32aad804a3b9d3b1ae89c40416e428c7 | refs/heads/main | 2022-09-22T09:32:56.645994 | 2022-08-24T15:11:19 | 2022-08-24T15:12:33 | 246,377,443 | 0 | 0 | MIT | 2022-07-15T13:55:56 | 2020-03-10T18:26:48 | Java | UTF-8 | PlantUML | false | false | 1,274 | puml | @startuml Class diagram (suggestion)
package nl.gumbomillennium.plazacam {
class App {
{static} +void main()
-Clock clock
-ConfigController ConfigController
-WebcamController webcamController
-UploadController uploadController
+void tick()
}
class ConfigController {
-Config config
+Config getConfig()
}
class Config {
+boolean isDefault
+int captureIntervalInMinutes
+String deviceName
+String[] cameras
{static} +Config getDefaultConfig()
{static} +Config getConfigFromFile(String fileName)
}
class WebcamController {
-Webcam[] webcams
+void addCamera(String camera)
+CompletableFuture<CharSequence[]> takePhoto()
}
class Webcam {
-VideoCapture capture
+CompletableFuture<CharSequence> getPhoto()
}
class UploadController {
{static} -String uploadUrl
-String accessToken
+CompletableFuture<void> upload(CharSequence image)
+CompletableFuture<void> upload(CharSequence[] image)
}
}
' Relations
App *-- WebcamController
App *-- ConfigController
App *-- UploadController
WebcamController *-- Webcam
ConfigController *-- Config
@enduml
| false | true | false | false | class |
6a3b63bc136a8fd57cbb68ef66a426eb0b53d990 | 939ec2212f87c1894d792e169fce964bec902583 | /docs/UseCases/Manage-Policies/Add-Policy.puml | 23b733e8e18ec7dbd841dfe7e66125908416494f | [] | no_license | CAADE/fleet | 37e18246e0a10122a711efccdab3c134232d120e | a62d2a82a2100583d84e41ea21efda9512fc4ac7 | refs/heads/master | 2020-03-22T00:31:19.695430 | 2018-07-13T03:27:19 | 2018-07-13T03:27:19 | 139,250,021 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 257 | puml | @startuml
Actor "Ops Manager" as A
box "Manage Policies" #lightblue
participant "fleet" as S
A -> S : fleet-policy-add
participant "Cloud Stack" as CS
S -> CS : policy/add (name, triggers)
CS -> CS : sails.helpers.addPolicy(name, triggers)
end box
@enduml
| false | true | false | false | usecase |
a9d4c1c7d0734c366db533ce1465a3d0992c3425 | 3a2f557271daa7744529f6d50e53220a506190bf | /doc/Budget.plantuml | 4479d941142863a86694689640b5adfe54834c41 | [] | no_license | FlorianMarcon/BankModels | 0bcba14a7fa260d7cc37a5ce972cad16e9d6c531 | e3fafd273da7724eaaac083cf22ca00d7c90ce82 | refs/heads/master | 2022-12-29T00:57:05.129521 | 2020-10-10T12:04:27 | 2020-10-10T12:04:27 | 254,835,886 | 0 | 0 | null | 2020-04-18T11:58:04 | 2020-04-11T09:40:38 | TypeScript | UTF-8 | PlantUML | false | false | 97 | plantuml | @startuml
class Budget {
_id : ID
name : String
amount : Number
idUser : ID
}
@enduml
| false | true | false | false | class |
18d1fd7c28a9e5eeb552afad62a017818b1ddcce | 495bd76445eafbf55ff3a3ff30f57d6d887d0697 | /out/production/DesignPatterns/factorymethodpattern/UML/ClassDiagram.puml | e8d54f48cd6c5e2f8d1ad63ac131fc6830053d65 | [] | no_license | alexfoglia/DesignPatterns | 62a5da12f3fe2ddd7eca37f52f6eb0f0e49093ef | 89bf7e552a7d91d25b903d4db5f68ccdef9be9a7 | refs/heads/main | 2023-03-14T22:26:28.144741 | 2021-02-25T15:38:19 | 2021-02-25T15:38:19 | 314,671,175 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 899 | puml | @startuml
title Factory Pattern
abstract class PizzaStore {
abstract Pizza createPizza()
void orderPizza()
}
Note left: The creator classes
class NYPizzaStore extends PizzaStore {
Pizza createPizza()
}
class ChicagoPizzaStore extends PizzaStore {
Pizza createPizza()
}
abstract class Pizza {
String name
String dough
String sauce
List<String> toppings
void prepare()
void bake()
void cut()
void box()
String getName()
}
Note left: The product classes
class NYStyleCheesePizza extends Pizza
class ChicagoStyleCheesePizza extends Pizza {
void cut()
}
Note "Product-Creator relationship" as N1
abstract class Product
class ConcreteProduct extends Product
abstract class Creator {
abstract Product factoryMethod()
}
class ConcreteCreator extends Creator {
Product factoryMethod()
}
ConcreteCreator -> ConcreteProduct
@enduml | false | true | false | false | class |
b9a3ee5ed5659930fab7221680d2780e48789441 | 299b128aa49ea8056a297d9ac1141bd3837b0c71 | /src/main/java/ex44/ex44.puml | b296202652e0495417628d658a916cb9c23cd80f | [] | no_license | DyroZang/mousa-cop3330-assignment3 | b9cbe9cfe95bc82797f426b986b65a1010a660ab | 85d49ecd8592919592be8706fc54b2b37d62a450 | refs/heads/master | 2023-08-23T11:14:59.921548 | 2021-10-11T21:10:09 | 2021-10-11T21:10:09 | 416,087,579 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 255 | puml | @startuml
class ex44.App {
~ {static} int searchAndPrint(String,Product[])
~ {static} void prompter(Product[])
+ {static} void main(String[])
}
class ex44.Product {
~ String name
~ double price
~ long quantity
~ {static} Product[] findProducts()
}
@enduml | false | true | false | false | class |
6a3bcbc92d7737329fc5dad077c89961db626578 | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao2/UC5_CD.puml | 31c8c4de4d50d614e7edfa79bf949fe20b5175fe | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,400 | puml | @startuml
skinparam classAttributeIconSize 0
class AplicacaoPOT
{
+static getInstance()
+getSessaoAtual()
}
class SessaoUtilizador
{
+getEmailUtilizador()
}
class Colaborador {
-String nome
-String funcao
-String telefone
-String email
+Colaborador(nome, funcao, telf, email)
+getEmail()
+getNome()
}
class Organizacao {
-String nome
-String NIF
-String website
-String telefone
-String email
+Colaborador novoColaborador(nome, funcao, telf, email)
+registaColaborador(colab)
+validaColaborador(colab)
-addColaborador(colab)
-geraPwd()
}
class Plataforma {
-String designacao
+getOrganizacaoByEmailUtilizador(emailUtlz)
}
class EspecificarColaboradorController {
+novoColaborador(nome, funcao, telf, email)
+registaColaborador()
}
class EspecificarColaboradorUI {
}
class AutorizacaoFacade {
+registaUtilizadorComPapel(nome, email, pwd, papel)
}
EspecificarColaboradorUI ..> EspecificarColaboradorController
EspecificarColaboradorController ..> Plataforma
EspecificarColaboradorController ..> Organizacao
EspecificarColaboradorController ..> Colaborador
EspecificarColaboradorController ..> AplicacaoPOT
EspecificarColaboradorController ..> SessaoUtilizador
Plataforma "1" --> "*" Organizacao : possui
Organizacao "1" --> "1" Colaborador : tem gestor
Organizacao "1" --> "1..*" Colaborador : tem
Organizacao ..> AutorizacaoFacade
@enduml
| false | true | false | false | sequence |
b4c2c552fb1aa00e0a0c7bd0690bcb91ac002b91 | 365f05842a6b057745d77af3093e909e6e3622e6 | /doc/cd-overview.puml | 7422c4ef0bbbc228eaa074e20d69fd054f94cd13 | [] | no_license | sosuisen/sosuisen-my-inventory-gatsby | ca475303e66c34d8d4dfd851893f8cd55b019cfb | 9f3d582b595469f3e01fa6349f09e117a9762eaf | refs/heads/main | 2023-03-17T18:00:05.987366 | 2021-03-11T09:53:56 | 2021-03-11T09:53:56 | 337,953,673 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,215 | puml | ' PlantUML
@startuml cd-overview
title Overview of Continuous Deployment using GitDocumentDB
!define ICONURL https://raw.githubusercontent.com/tupadr3/plantuml-icon-font-sprites/v2.2.0
!includeurl ICONURL/common.puml
!includeurl ICONURL/devicons/github_badge.puml
!includeurl ICONURL/devicons/git.puml
!includeurl ICONURL/font-awesome-5/cogs.puml
!define SPRITESURL https://raw.githubusercontent.com/plantuml-stdlib/gilbarbara-plantuml-sprites/v1.0/sprites
!includeurl SPRITESURL/gatsby.puml
!includeurl SPRITESURL/netlify.puml
!includeurl SPRITESURL/electron.puml
node "<$electron>\nLocal App" {
database "GitDocumentDB" #f0f0ff;line:blue{
DEV_GIT(localrepos, Local Git repository, database) #f0f0ff;line:blue;line.dashed;{
collections "JSON files" as localjson #3030f0;text:white
}
}
}
DEV_GITHUB_BADGE(sourcerepos, GitHub, database) #fff0f0;line:red{
FA5_COGS(githubactions, GitHub actions, control) #ffffff
}
node "<$netlify>Hosting" {
collections "Static website" as website
FA5_COGS(githubapps, "GitHubApps", control)
}
localrepos <--> sourcerepos : Synchronize\n(pull, resolve conflicts and push)
githubapps -up-> sourcerepos : read
githubapps <-- sourcerepos : hook
@enduml | false | true | false | false | sequence |
a0f61938e61b917ebc37bcabf5b61a0e251d5152 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/order/media/src/place_entities.puml | 7986ad376d2b95fe77038e583e9531559ad2e7f2 | [
"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,754 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class RelatedPlaceRefOrValue {
@schemaLocation: uri
@type*: string <<discriminator>>
role*: string
}
class FieldedAddress {
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
streetName*: string
streetNr: string
streetNrLast: string
streetNrLastSuffix: string
streetNrSuffix: string
streetSuffix: string
streetType: string
}
RelatedPlaceRefOrValue <|-- FieldedAddress
FieldedAddress *--> GeographicSubAddress : geographicSubAddress
class FormattedAddress {
addrLine1*: string
addrLine2: string
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
}
RelatedPlaceRefOrValue <|-- FormattedAddress
class GeographicSubAddress {
buildingName: string
levelNumber: string
levelType: string
privateStreetName: string
privateStreetNumber: string
}
GeographicSubAddress *-->"*" MEFSubUnit : subUnit
class GeographicAddressLabel {
externalReferenceId*: string
externalReferenceType*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressLabel
class MEFGeographicPoint {
spatialRef*: string
x*: string
y*: string
z: string
}
RelatedPlaceRefOrValue <|-- MEFGeographicPoint
class MEFSubUnit {
subUnitNumber*: string
subUnitType*: string
}
class GeographicAddressRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressRef
class GeographicSiteRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicSiteRef
@enduml
| false | true | false | false | sequence |
0ec4b123c63bce4a5d4ac1d8793280e35130c2cd | d33079ed6343577d9d5ad094f2f510b03ecd1ded | /tests/Feature/TestData/Composition.puml | 69365f4e9c975e6cfe37765c4558c6501f89905f | [] | no_license | Prizephitah/php2puml | 908bf2c98a8bf0882bc94d663c3b0951858be9f5 | 3af0bde788e57aa0f4fe30144db9931379951add | refs/heads/master | 2023-01-19T01:13:59.324114 | 2020-11-12T13:58:05 | 2020-11-12T13:58:05 | 263,049,006 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 184 | puml | @startuml
class Arm {
}
class Leg {
}
class Body {
#Arm leftArm
#Arm rightArm
#Leg leftLeg
#Leg rightLeg
#int limbs
#unknown
}
Body *-- Arm
Body *-- Leg
@enduml | false | true | false | false | class |
dbf9ad07f490f2ef0a9974201bf82c2d45df46c5 | cd311955a4e833889d31ab910eccf7c2a322de41 | /documentation/diagrams/cases/user/localbusiness_user-register.puml | 22293ca4015f5bc5700cdd04d334b3ac80891469 | [] | no_license | ogabrielguerra/puc-tcc | 11a8a89e533429f52acd4df1f05419dc2763ccc3 | e02d78e8214c387796553f3703d7b1bc4da1e8c6 | refs/heads/master | 2023-08-26T06:24:38.929937 | 2021-10-23T14:16:50 | 2021-10-23T14:16:50 | 303,121,964 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 215 | puml | @startuml
left to right direction
'title "C1. Usuário cria conta no sistema"
User as "Usuário Comum"
(Criar Conta no Sistema) as Register
(Feedback) as Feedback
User -r--> Register
Register --> Feedback
@enduml | false | true | true | false | uml-unknown |
9466ccb54d8a41eefb3082ebc2e67b8981a72043 | d7c39bffedb73235342b682a08b14b46022fcbf0 | /uml/InventroyDiagram.puml | 5a113f3e71fcae865d9342a002ca1a71fab37c9c | [] | no_license | annbinus/Personal-Inventory-App | 36662867c529fb5f2a9aa5587b7b036a8a537376 | de3efe0553bf569047e53bf41df9709bb6f8b6a3 | refs/heads/master | 2023-07-08T04:14:03.802411 | 2021-07-26T05:18:05 | 2021-07-26T05:18:05 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,485 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Main{
-start()
-main()
}
class MainWindowController{
-ListItems listItems
-TableView<Item> tableView
-TableColumn<Item, String> name
-TableColumn<Item, String> serialNumber
-TableColumn<Item, String> value
-TextField searchText
-Button addButton
+editNameColumn()
+editSerialNumberColumn()
+editValueColumn()
+getList()
+openFile()
+handleAddButton()
+handleRemoveButton()
+handleFileOpen()
+handleFileDownload()
+sortName()
+sortSerialNumber()
+sortValue()
+setSearchText()
+initialize()
}
class ListItems{
-int count
-ArrayList<Item> itemList
+ListItems()
+addItem()
+removeItem()
+clearAllItems()
+editName()
+editSerialNumber()
+editValue()
+sortNameList()
+sortSRNumber()
+sortValueList()
+checkSRNumber()
+getItems()
}
class Item{
-String name
-String serialNumber
-String value;
+Item()
+getName()
+setName()
+getSerialNumber()
+setSerialNumber()
+getValue()
+setValue()
+toString()
}
class ItemController{
TextArea name
TextArea serialNumber
TextArea value
Button enterButton
Label
+handleEnterButton()
+initialize()
}
class OpenSaveFile{
+openFile()
+saveTSVFile()
+saveHTMLFile()
+saveJSONFile()
+openTSVFile()
+openHTMLFile()
+openJSONFile()
}
Javafx.Application <|-- Main
Main <|-- MainWindowController
ListItems <- MainWindowController
Main --> ListItems
ListItems <-- Item
OpenSaveFile <- ListItems
MainWindowController <-- OpenSaveFile
ItemController -> Item
@enduml | false | true | false | false | class |
eefec05ec870e0cc906412e4f338c82935c39b01 | b615d963ae1cfa22289775c561dd073b55a71ebd | /docs/uml-class-diagrams/display02/test/DisplayCommInterfaceImplementationTests/DisplayCommInterfaceImplementationTests.puml | e9d3f9b7d91ce6a9ce3ebc82de6112e6e72465da | [] | no_license | elilley15/csi-3370-software-project | 8062dddf435ab0c7941acdf03225f84c18457947 | d2642cf649dabeafd6d9753c483b9df265d85118 | refs/heads/main | 2023-01-18T15:48:03.237629 | 2020-11-28T21:24:10 | 2020-11-28T21:24:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 157 | puml | @startuml DisplayCommInterfaceImplementationTests
package edu.oakland.test.display02 {
class DisplayCommInterfaceImplementationTests {
}
}
@enduml | false | true | false | false | class |
7fccc633edbce3a1ee866196271e5ba1c97c2cf2 | 593dff2f34283338a40dd914010cb518d281486e | /Docs/DomainModel/States.puml | 16c0a366a6a495a65182b3b0e259db467e9ef208 | [] | no_license | x-USantaTecla-game-uno/requirements | 7527c412569451dceacab061f1103e25618958c3 | 16e62a846757e6bdc5c89d9869e2a2943036d3a7 | refs/heads/main | 2023-08-23T09:41:00.101607 | 2021-10-18T16:31:50 | 2021-10-18T16:31:50 | 383,190,547 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 358 | puml | @startuml
title "States"
state BeforePlay
state InGame
state AfterPlay
state Finish
state c <<choice>>
[*] --> BeforePlay
BeforePlay --> InGame : "begin"
InGame --> c : "play a card"
c --> InGame : [nobody wins]
c --> AfterPlay : [somebody wins]
state e <<choice>>
AfterPlay --> e
e --> BeforePlay : [restart]
e --> Finish : [no restart]
@enduml
| false | true | true | false | sequence |
3c2f77125f039fab8b25c4c189eafc90b9af3462 | 2b2acc58e16343190688ed460b26386980bb2b20 | /Documents/UC14/SD.puml | a6f9ace7ef71b81d2592e37084de8b199f5f9a5a | [] | no_license | 1190452/LAPR3 | 0ca11285a3e85f93b5d687a0e10caef6f62a9577 | e641d35f6524fde900beb3683937fc697af3b325 | refs/heads/master | 2023-05-11T07:45:02.636516 | 2021-01-31T17:06:37 | 2021-01-31T17:06:37 | 372,571,407 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,397 | puml | @startuml
autonumber
'hide footbox
actor "Client" as COL
participant ":ClientUI" as UI
participant ":CheckoutController" as CTRL
participant ":UserSession" as US
participant ":DoPayment" as PAY
participant "ord\n:ClientOrder" as ORDER
participant "inv\n:Invoice" as INV
participant ":EmailAPI" as API
participant ":ClientOrderHandler" as OH
participant ":InvoiceHandler" as IH
participant ":DataBase" as DB
activate COL
COL -> UI : begins the checkout process
activate UI
UI -> COL : shows cart and asks for confirmation
deactivate UI
COL -> UI : confirms
activate UI
UI -> CTRL : checkoutProcess(cart)
activate CTRL
CTRL -> US : user=getUserSession()
activate US
deactivate US
CTRL -> CTRL : price=getCartPrice(cart)
CTRL -> CTRL : weight=getCartWeight(cart)
CTRL -> ORDER** : create(price, weight, user.id)
CTRL -> ORDER : save()
activate ORDER
ORDER -> OH : save(org)
activate OH
OH -> DB : save(ord)
activate DB
deactivate DB
deactivate OH
deactivate ORDER
CTRL -> PAY : doesPayment(user, price)
activate PAY
deactivate PAY
CTRL -> INV** :create(price)
CTRL -> INV:save()
activate INV
INV -> IH:save(inv)
activate IH
IH -> DB:save(inv)
activate DB
deactivate DB
deactivate IH
deactivate INV
CTRL -> API : sendEmailToClient(user.email)
activate API
deactivate API
deactivate CTRL
UI -> COL : Informs the success of the operation
deactivate UI
deactivate COL
@enduml
| false | true | false | false | usecase |
b4a3b1d2d5ca7bce572196e2a4514f482e061b3e | 831e34223751ba984839b477e9334a7316b044af | /docs/diagramas/diagramas de clase/Lectores2.puml | c2e469fd4b5e4ad6e009b6a3735fccd250e4f83e | [
"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,471 | puml | @startuml
title Lectores
hide empty members
class LectorDeCartas {
# lector: FileReader
# parser: JSONParser
# {static} rutaArchivo: String
# {static} continentes: ArrayList
- lectores: ArrayList
+ {static} LectorDeCartas(): LectorDeCartas
+ {static} LectorDeCartas(continentes): LectorDeCartas
+ leer(unaRutaArchivo): ArrayList
}
class LectorDeObjetivos {
# lector: FileReader
# parser: JSONParser
# {static} rutaArchivo: String
# {static} continentes: ArrayList
- lectores: ArrayList
# {static} jugadores: ArrayList
+ {static} LectorDeObjetivos(): LectorDeObjetivos
+ {static} LectorDeObjetivos(unosContinentes, unosJugadores): LectorDeObjetivos
+ leer(unaRutaArchivo): ArrayList
}
class LectorDePaises {
# lector: FileReader
# parser: JSONParser
# {static} rutaArchivo: String
- lectores: ArrayList
+ leer(unaRutaArchivo): ArrayList
}
LectorDeCartasJSON --|> LectorDeCartas
LectorDeObjetivosJSON --|> LectorDeObjetivos
LectorDePaisesJSON --|> LectorDePaises
class LectorDeCartasJSON {
+ {static} LectorDeCartasJSON(): LectorDeCartasJSON
- obtenerCarta(carta: JSONObject): Carta
}
class LectorDeObjetivosJSON {
+ {static} LectorDeObjetivosJSON(): LectorDeObjetivosJSON
- obtenerObjetivo(objetivo: JSONObject): Objetivo
}
class LectorDePaisesJSON {
+ {static} LectorDePaisesJSON(): LectorDePaisesJSON
- obtenerPais(pais: JSONObject): Pais
}
@enduml | false | true | false | false | class |
0e4fe247a9a48e2dc49a3cb3b8da6e788bb914fd | 5b62cd5c19ebc179b97104b46b714c876d1f4968 | /diagrams/questions.puml | addee4f79e885def05ca26b6191f1cb5aee2ae82 | [] | no_license | dgvicente/acme_payments | 0a457839736f10cb0c968aa73ecd85bea2ebd145 | 501c4b2656711745f4b526a2cc10a6bc20a0a84a | refs/heads/master | 2020-07-27T17:04:41.035655 | 2019-09-20T00:06:39 | 2019-09-20T00:06:39 | 209,165,339 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 469 | puml | @startuml
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
}
class QuestionsFactory {
}
note right: Reads from file and builds the\n questions. Uses predefined\n or given REGEX to parse.
class Question{
name : String
}
class QuestionHourItem {
day_of_week : String
initial_time : Time
end_time: Time
}
Question "1" *-- "has list of" QuestionHourItem : hour_items
QuestionsFactory --> "*" Question: creates list of
@enduml | false | true | false | false | sequence |
69216b979522e328c62e8bbdb164c983e64d02c9 | 20c9d90f40e69cba7b7044b840d3e29c6c79ea65 | /docs/modules/ROOT/workflows/network_config_manager_workflow.puml | a7a0cf733a7608d3aa923c9da0be30f3b54cf1eb | [
"MIT"
] | permissive | xieus/alcor | 4ca39226596e66ada3832ae5df18bf2bd01c1c19 | d786ac2bdd2cfab369fce1e3139cd0ace392ff4d | refs/heads/master | 2023-02-08T06:04:53.875318 | 2022-12-22T03:59:06 | 2022-12-22T03:59:06 | 252,636,860 | 1 | 0 | Apache-2.0 | 2020-06-04T21:46:18 | 2020-04-03T05:03:05 | Java | UTF-8 | PlantUML | false | false | 4,322 | puml | 'MIT License
'Copyright(c) 2020 Futurewei Cloud
'
' Permission is hereby granted,
' free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal in the Software without restriction,
' including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of the Software, and to permit persons
' to whom the Software is furnished to do so, subject to the following conditions:
'
' The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
'
' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
' WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@startuml
skinparam monochrome true
collections "Data Plane Manager"
collections "Network Configuration Manager"
box "Compute Host 1" #LightBlue
participant "ACA on \n Host"
end box
===Scenarios A: DPM push down configuration to NCM==
autonumber 10
"Data Plane Manager" -> "Network Configuration Manager": Push down configuration to the cluster level NCM
"Network Configuration Manager" -> "Network Configuration Manager": Store the Full/Delta update with the corresponding version number
"Network Configuration Manager" -> "Network Configuration Manager": Discard unneeded old versions
===Scenarios B1: small/large VPC for port/router/gateway create/update/delete==
autonumber 20
"Network Configuration Manager" -> "ACA on \n Host": Push down configuration to ACA
"Network Configuration Manager" -> "Network Configuration Manager": Update Sent = True
===Scenarios B2: small VPC for neighbor and SG create/update/delete==
autonumber 30
"Network Configuration Manager" -> "ACA on \n Host": Push down configuration to ACA
"Network Configuration Manager" -> "Network Configuration Manager": Update Sent = True
===Scenarios C1: large VPC for neighbor and SG create==
autonumber 40
"Network Configuration Manager" -> "Network Configuration Manager": Don't push down configuration to ACA
"Network Configuration Manager" -> "Network Configuration Manager": Update Sent = False
===Scenarios C2: large VPC for neighbor and SG update==
autonumber 50
"Network Configuration Manager" -> "Network Configuration Manager": if sent = false, just update the database and done
"Network Configuration Manager" -> "ACA on \n Host": if sent = true, need to send the update to ACA host
===Scenarios C3: large VPC for neighbor and SG delete==
autonumber 60
"Network Configuration Manager" -> "Network Configuration Manager": if sent = false, just delete the entry in database and done
"Network Configuration Manager" -> "ACA on \n Host": if sent = true, need to send the delete to ACA host
===Scenarios D: Out of Order handling on NCM==
autonumber 70
"Data Plane Manager" -> "Network Configuration Manager": Send configuration to NCM but NCM detect a configuration is out of order
"Network Configuration Manager" -> "Data Plane Manager": Send GoalStateOperationStatus with resource ID and operation_status = OUT_OF_ORDER
"Data Plane Manager" -> "Data Plane Manager": Determine the latest configuration (Full+Delta) for the resource
"Data Plane Manager" -> "Network Configuration Manager": Push down configuration to NCM using existing logic
"Network Configuration Manager" -> "ACA on \n Host": Push down configuration to ACA using existing logic
===Scenarios E: ACA Restart handling==
autonumber 80
"ACA on \n Host" -> "ACA on \n Host": ACA detects itself or dataplace has been restarted, \nclear all the internal memory and database
"ACA on \n Host" -> "Network Configuration Manager": Send GoalStateOperationStatus with operation_status = RESTARTED
"Network Configuration Manager" -> "Network Configuration Manager": Determine the latest configuration (Full+Delta) for all resources on host
"Network Configuration Manager" -> "ACA on \n Host": Push down configuration to ACA using existing logic
@enduml
| false | true | false | false | sequence |
4bd026aff3e7c015f0ab0877d8f3b023bc603685 | df5eb777e0a9e881cd3cefbb2b00ba58c68b04db | /diagrams/src/Repositories/BidRepository.puml | f844fe052c2900ac9422953cfe8ab3a8a51b6551 | [
"MIT"
] | permissive | converge-app/bidding-service | caf61cd4eb3c719c0430b53ce0fdcc225c4c2f8d | fc7539fb98d71b0d8a5fb1282de9fd31573c00b7 | refs/heads/master | 2023-03-15T22:56:53.011725 | 2019-12-17T11:42:53 | 2019-12-17T11:42:53 | 212,993,977 | 0 | 0 | MIT | 2023-03-04T01:15:47 | 2019-10-05T12:16:01 | C# | UTF-8 | PlantUML | false | false | 1,208 | puml | @startuml
interface IBidRepository {
Get() : Task<List<Bid>>
GetById(id:string) : Task<Bid>
GetByProject(projectId:string) : Task<List<Bid>>
GetByFreelancerId(freelancerId:string) : Task<List<Bid>>
GetByProjectAndFreelancer(projectId:string, freelancerId:string) : Task<Bid>
Create(bid:Bid) : Task<Bid>
Update(id:string, bidIn:Bid) : Task
Remove(bidIn:Bid) : Task
Remove(id:string) : Task
GetByProjectId(projectId:string) : Task<List<Bid>>
}
class BidRepository {
- <<readonly>> _bids : IMongoCollection<Bid>
+ BidRepository(dbContext:IDatabaseContext)
+ <<async>> Get() : Task<List<Bid>>
+ <<async>> GetById(id:string) : Task<Bid>
+ <<async>> GetByProject(projectId:string) : Task<List<Bid>>
+ <<async>> GetByFreelancerId(freelancerId:string) : Task<List<Bid>>
+ <<async>> GetByProjectAndFreelancer(projectId:string, freelancerId:string) : Task<Bid>
+ <<async>> Create(bid:Bid) : Task<Bid>
+ <<async>> Update(id:string, bidIn:Bid) : Task
+ <<async>> Remove(bidIn:Bid) : Task
+ <<async>> Remove(id:string) : Task
+ <<async>> GetByProjectId(projectId:string) : Task<List<Bid>>
}
IBidRepository <|-- BidRepository
@enduml
| false | true | false | false | class |
9692b3e79ae3bb3ca022fb53a18b19601573ec34 | ce0643c50c3218277dc7443187acdf5da2210c52 | /content/websocketd/sequence-diagram.puml | e3549050ebd06c59491c3207e010479eeb9c4a12 | [
"MIT"
] | permissive | wazo-platform/wazo-platform.org | 4618cad4955ada269ed319c887d5725e8543ce2a | 21584ce0ae1e4389d95d5aa0bee1183a726fa8c2 | refs/heads/master | 2023-08-31T08:09:37.738070 | 2023-08-30T14:50:20 | 2023-08-30T14:50:20 | 187,070,773 | 28 | 13 | MIT | 2023-09-07T13:49:07 | 2019-05-16T17:14:58 | SCSS | UTF-8 | PlantUML | false | false | 357 | puml | @startuml
User -> websocketd: Send token
websocketd -> auth: Validate token
auth --> websocketd: send acl list
User -> websocketd: Subscribe event
User -> websocketd: Subscribe event
User -> websocketd: Start events emission
rabbitmq -> websocketd: Receive event
websocketd -> websocketd: Check ACL and filter event
websocketd -> User: Send event
@enduml | false | true | false | false | sequence |
de00113ec58edaa8cf3724bbb82275ca2c31e95a | 1a3163be120dfe03dca6be864e4cb6cf3a9d3838 | /docs/3-AfterConfig.puml | 733f73190353392ffe5ebdca364de5f7ac278b20 | [] | no_license | luisfga/talkingz-app | 6972beb673b511b9471dddc821e97657022dd279 | 1df3af5c6c0269557950987f7057e98287af80a8 | refs/heads/master | 2023-06-09T10:51:13.380678 | 2020-12-22T23:02:25 | 2020-12-22T23:02:25 | 314,088,446 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 132 | puml | @startuml
MainActivity -> Database: loadUser
Database --> MainActivity: User
MainActivity -> RemoteWebSocket: connect(User)
@enduml | false | true | false | false | sequence |
a71ae74b94a48075ddf1aa63d4821fe7b2741069 | 618414d7666e67b9535ebd975e1de61e9c01e095 | /QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/mediacompat/mediacompat.plantuml | aeada31d0cf35ec2bd015c0fd81a84bac8e50f80 | [] | 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,636 | plantuml | @startuml
title __MEDIACOMPAT's Class Diagram__\n
package android.support.mediacompat {
class R {
- R()
}
}
package android.support.mediacompat {
class attr {
{static} + alpha : 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} + fontVariationSettings : int
{static} + fontWeight : int
{static} + ttcIndex : int
- attr()
}
}
package android.support.mediacompat {
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 android.support.mediacompat {
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} + compat_notification_large_icon_max_height : int
{static} + compat_notification_large_icon_max_width : 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
{static} + subtitle_corner_radius : int
{static} + subtitle_outline_width : int
{static} + subtitle_shadow_offset : int
{static} + subtitle_shadow_radius : int
- dimen()
}
}
package android.support.mediacompat {
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 android.support.mediacompat {
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} + cancel_action : int
{static} + chronometer : int
{static} + end_padder : int
{static} + forever : int
{static} + icon : int
{static} + icon_group : int
{static} + info : int
{static} + italic : int
{static} + line1 : int
{static} + line3 : int
{static} + media_actions : int
{static} + normal : int
{static} + notification_background : int
{static} + notification_main_column : int
{static} + notification_main_column_container : int
{static} + right_icon : int
{static} + right_side : int
{static} + status_bar_latest_event_content : int
{static} + tag_transition_group : int
{static} + tag_unhandled_key_event_manager : int
{static} + tag_unhandled_key_listeners : int
{static} + text : int
{static} + text2 : int
{static} + time : int
{static} + title : int
- id()
}
}
package android.support.mediacompat {
class integer {
{static} + cancel_button_image_alpha : int
{static} + status_bar_notification_info_maxnum : int
- integer()
}
}
package android.support.mediacompat {
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 android.support.mediacompat {
class string {
{static} + status_bar_notification_info_overflow : int
- string()
}
}
package android.support.mediacompat {
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
- style()
}
}
package android.support.mediacompat {
class styleable {
{static} + ColorStateListItem : int[]
{static} + ColorStateListItem_android_color : int
{static} + ColorStateListItem_android_alpha : int
{static} + ColorStateListItem_alpha : 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} + GradientColor : int[]
{static} + GradientColor_android_startColor : int
{static} + GradientColor_android_endColor : int
{static} + GradientColor_android_type : int
{static} + GradientColor_android_centerX : int
{static} + GradientColor_android_centerY : int
{static} + GradientColor_android_gradientRadius : int
{static} + GradientColor_android_tileMode : int
{static} + GradientColor_android_centerColor : int
{static} + GradientColor_android_startX : int
{static} + GradientColor_android_startY : int
{static} + GradientColor_android_endX : int
{static} + GradientColor_android_endY : int
{static} + GradientColorItem : int[]
{static} + GradientColorItem_android_color : int
{static} + GradientColorItem_android_offset : int
- styleable()
}
}
R +-down- attr
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 |
58bfb05a75f7b96964faca01679dece9731a31e3 | 80e00ad16222ce75e991c90d49875c1dba11825a | /src/main/resources/refureInvitation.puml | 4bda530967736b37c1c87446128289d22517015f | [] | no_license | dmorenoh/shoppingList | e36ed6312f5e1cc987607c368489946d6dae6b1e | 10a790d2501760eb9b176b3833a680c3a526bbc3 | refs/heads/master | 2021-01-17T20:33:43.697808 | 2016-08-04T06:09:54 | 2016-08-04T06:09:54 | 64,906,889 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,492 | puml | @startuml
hide footbox
title Accept Invitation: Refuse invitation
autonumber
actor Friend
boundary Device
box "Client" #LightBlue
boundary ShoppingListApp
end box
box "BackEnd"
control UserStore
control ShoppingManagementController
control InvitationService
boundary SMSClient
Friend->Device:Click on invitation
Device->ShoppingListApp: Open App
activate ShoppingListApp
ShoppingListApp-->Friend: Show login
activate ShoppingListApp #DarkSalmon
Friend->ShoppingListApp: Login
ShoppingListApp->UserStore:Login
activate UserStore
UserStore-->ShoppingListApp: Login OK
deactivate UserStore
ShoppingListApp -> ShoppingListApp: Redirect accept invitation
ShoppingListApp-->Friend: Show accept invitation page
deactivate ShoppingListApp #DarkSalmon
Friend->ShoppingListApp: Accept invitation
activate ShoppingListApp #DarkSalmon
ShoppingListApp->ShoppingManagementController: acceptInvitation(user, invitedFriend, accepted_NOT)
activate ShoppingManagementController
ShoppingManagementController->InvitationService: refuseInvitation(user)
activate InvitationService
InvitationService->SMSClient:sendMsgRefuseInvitation
SMSClient--> InvitationService: sent
InvitationService--> ShoppingManagementController
deactivate InvitationService
autonumber resume "<font color=blue><b>Message "
ShoppingManagementController-->ShoppingListApp
deactivate ShoppingManagementController
end box
deactivate ShoppingListApp #DarkSalmon
ShoppingListApp-->Friend: Successfully refused
deactivate ShoppingListApp
@enduml | false | true | false | false | usecase |
8cb07880c26b4ecb4c3e8d09c1084df79d9cf514 | 1ce6145af4ab75460f5b6176dfd22a2426434cb4 | /RoyalWormDemo/BoardObjects/BoardObjects.plantuml | c23c470a9a54cd71c9843a6642455e2340391e5f | [] | no_license | zyzzyxxy/RoyalWorm | 89436a49c215f486c8ddeae7213f4640ded1a8d0 | db144a146983a8854a492d17a912922512c47d64 | refs/heads/master | 2020-04-20T20:51:47.678261 | 2019-03-10T22:32:38 | 2019-03-10T22:32:38 | 169,090,100 | 1 | 0 | null | 2019-03-10T12:39:20 | 2019-02-04T14:23:54 | Java | UTF-8 | PlantUML | false | false | 3,793 | plantuml | @startuml
title __BOARDOBJECTS's Class Diagram__\n
package BoardObjects {
class Boost {
- counter : int
- spawnRate : int
+ Boost()
+ incCounter()
+ resetCounter()
+ timeToSpawn()
}
}
package BoardObjects {
class BoostManager {
~ rnd : Random
~ applesSpawned : int
+ BoostManager()
+ spawn()
+ spawnRandom()
}
}
package BoardObjects {
class Bullet {
- speed : int
- dirX : int
- dirY : int
- projection : boolean
+ Bullet()
+ update()
+ getProjection()
+ endProjection()
+ getSpeed()
+ getWorm()
}
}
package BoardObjects {
class DynamicObject {
~ speed : int
~ counter : int
~ type : char
+ DynamicObject()
+ getCounter()
+ setCounter()
+ getSpeed()
+ update()
}
}
package BoardObjects {
class GameObject {
- type : char
+ GameObject()
+ getPosition()
+ getType()
}
}
package BoardObjects {
class Ghost {
- directionCounter : int
- changeDirection : int
- counter : int
- rnd : Random
- dead : boolean
+ Ghost()
+ update()
+ isDead()
+ setDead()
}
}
package BoardObjects {
class Player {
- lives : int
- name : String
+ host : boolean
+ addr : InetAddress
+ port : int
+ Player()
+ updateDirection()
+ getWorm()
+ getWormCounter()
+ resetWormCounter()
+ incWormCounter()
+ getWormSpeed()
+ isHost()
+ getAddr()
+ getPort()
+ getWormLives()
+ setInetAddr()
+ getName()
+ getPlayerPanel()
}
}
package BoardObjects {
class Worm {
- speed : int
- length : int
- lives : int
- score : int
- body : List<Position>
- bullets : List<Bullet>
- wormNumber : int
- counter : int
- type : char
- isFast : int
- gun : boolean
- fireAllowed : boolean
+ Worm()
+ update()
+ resetCounter()
+ incWormCounter()
+ updater()
+ getHeadPos()
+ getTailPos()
+ updateBody()
+ grow()
+ loseLife()
+ isAlive()
+ reset()
+ generateRandomPos()
+ validPos()
+ addToSpeed()
+ lightningMode()
+ resetSpeed()
+ cut()
+ isInBody()
+ updateHeadPos()
+ hasGun()
+ pickUpGun()
+ fireGun()
+ removeBullet()
+ getDirection()
+ getNextDirection()
+ getLives()
+ getSpeed()
+ getCounter()
+ getScore()
+ getBullets()
+ setScore()
+ toggleFireAllowed()
}
}
Boost -up-|> GameObject
Bullet -up-|> DynamicObject
Bullet o-- Position : position
Bullet o-- Worm : w
DynamicObject -up-|> GameObject
DynamicObject o-- Direction : direction
GameObject o-- Position : position
Ghost -up-|> DynamicObject
Ghost o-- Position : position
Ghost o-- Direction : direction
Player o-- Worm : worm
Player o-- PlayerPanel : playerPanel
Worm -up-|> GameObject
Worm o-- Position : headPos
Worm o-- Position : tailPos
Worm o-- Position : startPos
Worm o-- Position : position
Worm o-- Direction : direction
Worm o-- Direction : nextDirection
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 |
5ab63f0d52f5df9174e98939824af9b8e9114f54 | aa9620300bc8488f53437e0f5faab824225aab73 | /ibex_pres/train_col_aggregating_further_transformations.plantuml | d864831ef3f7b0f5ccd433ac9e599c937aa9743f | [
"BSD-3-Clause"
] | permissive | atavory/atavory.github.io | 94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3 | 43d98b45150411d83ab75a92a6d4ab9226927ef0 | refs/heads/master | 2021-01-19T06:15:43.197765 | 2019-11-18T10:58:38 | 2019-11-18T10:58:38 | 100,634,235 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 452 | plantuml | @startuml
skinparam shadowing false
left to right direction
skinparam interface {
borderColor black
}
skinparam component {
arrowColor Black
}
database X0 #red
database X1 #red
interface " " as c0 #white
rectangle SelectKBest #white
rectangle PCA #white
interface " " as c1 #white
rectangle RandomForestRegressor #white
X0 --> c0
X1 --> c0
c0 --> SelectKBest
c0 --> PCA
SelectKBest --> c1
PCA --> c1
c1 --> RandomForestRegressor
@enduml
| false | true | false | false | sequence |
91b362dc059390c2142c99b80ec12433005a0cd0 | 40f9793f359d54cf989fb53f7451f3140e0a427b | /app/src/main/res/raw/maps_sequence.puml | ab229673e23daf3962671a8eadbe1b15fca042a0 | [] | no_license | verden11/Grabble_SELP | 4886995c22b173f07ed07e4df673a6464daaf6d1 | ddc4544358d5b20f76bb12fc3a288608e6faadfa | refs/heads/master | 2021-03-27T11:14:49.755889 | 2017-01-25T18:09:40 | 2017-01-25T18:09:40 | 72,873,428 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 729 | puml | @startuml
(*) --> "onCreate"
left to right direction
--> "checkLocationPermission"
--> "updateValuesFromBundle"
--> "onStart"
--> "onResume"
--> "onPause"
--> "onMapReady"
--> "DownloadKMLfile"
--> "onSaveInstanceState"
--> "onPostExecute"
--> "onRequestPermissionsResult"
--> "buildGoogleApiClient"
--> "onResume"
If "permission granted" then
--> [Yes]"onConnected"
--> "createLocationRequest"
--> "startLocationUpdates"
--> "onLocationChanged"
--> "updateUI"
--> "updateUI"
--> "onResume"
else
--> [Permission Denied]"onRequestPermissionsResult"
--> "onResume"
else
If "onBackPressed" then
--> "stopLocationUpdates"
--> "onStop"
Endif
Endif
@enduml
| false | true | false | false | activity |
efbae79b646544480b02a54b9a21842d24bda204 | e5046e7dfda3e836cbe894bd9e314c589f58bad7 | /sdk/docs/iot/resources/iot_provisioning_flow.puml | 7adccd9291136efcbb60771572795c07b567535d | [
"MIT",
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancode-unknown-license-reference",
"LGPL-2.1-or-later"
] | permissive | mcrlc/azure-sdk-for-c | 941764fcc7e30fd33c805598291e54fad1d01380 | 251df2bedb3144bc01fb84c64bd614758fcb20bb | refs/heads/master | 2022-11-06T07:05:41.550908 | 2020-06-19T01:59:14 | 2020-06-19T01:59:14 | 273,870,813 | 1 | 0 | MIT | 2020-06-21T09:13:37 | 2020-06-21T09:13:36 | null | UTF-8 | PlantUML | false | false | 4,352 | puml | @startuml
skinparam state {
BackgroundColor<<APP>> APPLICATION
BackgroundColor<<STRUCT>> Lavender
}
state color_coding {
state SDK_API
state SDK_DATA_OBJECT <<STRUCT>>
state APPLICATION_CODE <<APP>>
}
' Init
[*] --> az_iot_provisioning_client_init: START
az_iot_provisioning_client_init --> az_iot_provisioning_client_get_user_name
az_iot_provisioning_client_get_user_name --> az_iot_provisioning_client_get_client_id : X509 auth
state application_mqtt_connect <<APP>>
az_iot_provisioning_client_get_client_id --> application_mqtt_connect
' Optional SAS token generation:
az_iot_provisioning_client_get_client_id -> az_iot_provisioning_client_sas_get_signature : SAS auth
az_iot_provisioning_client_sas_get_signature -> application_hmac256
application_hmac256 -> az_iot_provisioning_client_sas_get_password
az_iot_provisioning_client_sas_get_password --> application_mqtt_connect : password
state application_hmac256 <<APP>>
' Subscribe
application_mqtt_connect --> application_mqtt_subscribe
state application_mqtt_subscribe <<APP>>
'application_mqtt_subscribe --> application_mqtt_receive : MQTT lib subscribed
' Register
application_mqtt_subscribe --> az_iot_provisioning_client_register_get_publish_topic
az_iot_provisioning_client_register_get_publish_topic --> application_mqtt_publish
az_iot_provisioning_client_register_get_publish_topic --> application_mqtt_receive
state application_mqtt_publish <<APP>>
state application_mqtt_receive <<APP>> {
' MQTT PUB received
[*] --> az_iot_provisioning_client_parse_received_topic_and_payload: MQTT PUB received from broker (cloud or Edge)
az_iot_provisioning_client_parse_received_topic_and_payload --> az_iot_provisioning_client_register_response
az_iot_provisioning_client_parse_received_topic_and_payload --> [*] : not provisioning related
az_iot_provisioning_client_register_response --> az_iot_provisioning_client_parse_operation_status
az_iot_provisioning_client_parse_operation_status --> az_iot_provisioning_client_operation_complete
az_iot_provisioning_client_operation_complete --> [*] : operation complete (success or failure)
az_iot_provisioning_client_operation_complete --> application_delay : operation in progress
state application_delay <<APP>>
application_delay --> az_iot_provisioning_client_query_status_get_publish_topic
az_iot_provisioning_client_query_status_get_publish_topic --> application_mqtt_publish
}
' Provisioning client:
az_iot_provisioning_client_init : - global_endpoint_hostname
az_iot_provisioning_client_init : - id_scope
az_iot_provisioning_client_init : - registration_id
' SAS Tokens
az_iot_provisioning_client_sas_get_signature : - token_expiration_unix_time
az_iot_provisioning_client_parse_received_topic_and_payload : - topic
az_iot_provisioning_client_parse_received_topic_and_payload : - payload
state az_iot_provisioning_client_register_response <<STRUCT>>
az_iot_provisioning_client_register_response : - status
az_iot_provisioning_client_register_response : - operation_id
az_iot_provisioning_client_register_response : - operation_status
az_iot_provisioning_client_register_response : - retry_after_seconds
az_iot_provisioning_client_register_response : - registration_result:
az_iot_provisioning_client_register_response : ..- assigned_hub_hostname
az_iot_provisioning_client_register_response : ..- device_id
az_iot_provisioning_client_register_response : ..- error_code
az_iot_provisioning_client_register_response : ..- extended_error_code
az_iot_provisioning_client_register_response : ..- error_message
az_iot_provisioning_client_register_response : ..- error_tracking_id
az_iot_provisioning_client_register_response : ..- error_timestamp
az_iot_provisioning_client_sas_get_password: - Base64(HMAC-SHA256(signature, SharedAccessKey))
az_iot_provisioning_client_sas_get_password: - key_name
az_iot_provisioning_client_query_status_get_publish_topic : - operation_id
' Application interfaces
application_mqtt_connect : - server_x509_trusted_root
application_mqtt_connect : - [client_x509_certificate]
application_mqtt_subscribe: - AZ_IOT_PROVISIONING_CLIENT_REGISTER_SUBSCRIBE_TOPIC
application_delay : - retry_after
application_hmac256 : - key (may be within an HSM)
@enduml
| false | true | false | false | sequence |
cf8ca2e4b0383e1a7f954f951632ac1b3d0c0a66 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartSetCustomTypeAction.puml | 825d53291b26af56f6f33bcd2a3af2c2468b0afb | [] | 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 | 526 | 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 CartSetCustomTypeAction [[CartSetCustomTypeAction.svg]] extends CartUpdateAction {
action: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
678b75d257e0f45e45011249f04ca55b86047886 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ExternalOAuth.puml | 7168dae176b77622887cbd7c207c7459a496d667 | [] | 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,391 | 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 ExternalOAuth [[ExternalOAuth.svg]] {
url: String
authorizationHeader: String
}
interface Project [[Project.svg]] {
version: Long
key: String
name: String
countries: [[String.svg List<String>]]
currencies: [[String.svg List<String>]]
languages: [[String.svg List<String>]]
createdAt: DateTime
trialUntil: String
messages: [[MessagesConfiguration.svg MessagesConfiguration]]
carts: [[CartsConfiguration.svg CartsConfiguration]]
shoppingLists: [[ShoppingListsConfiguration.svg ShoppingListsConfiguration]]
shippingRateInputType: [[ShippingRateInputType.svg ShippingRateInputType]]
externalOAuth: [[ExternalOAuth.svg ExternalOAuth]]
searchIndexing: [[SearchIndexingConfiguration.svg SearchIndexingConfiguration]]
businessUnits: [[BusinessUnitConfiguration.svg BusinessUnitConfiguration]]
}
interface ProjectSetExternalOAuthAction [[ProjectSetExternalOAuthAction.svg]] {
action: String
externalOAuth: [[ExternalOAuth.svg ExternalOAuth]]
}
ExternalOAuth --> Project #green;text:green : "externalOAuth"
ExternalOAuth --> ProjectSetExternalOAuthAction #green;text:green : "externalOAuth"
@enduml
| false | true | false | false | sequence |
ea8f1f5047baf1987406d0fed4791e4630d47302 | 502b942bb5a58619c142ec6d2eb482c01d61f002 | /pipeline/etc/pipeline.urm.puml | 6b2194da1556d9d63ee317670071679d8b854a4a | [
"MIT"
] | permissive | ghost-60/java-design-patterns | 31d1fefa5001936e928c06736aa445e79bfbdc8c | 0c93014eb87fe9d8fe97ab7b85680447e6b8b978 | refs/heads/master | 2021-01-13T10:48:10.718863 | 2016-10-27T16:06:35 | 2016-10-27T16:06:35 | 70,152,234 | 0 | 0 | null | 2016-10-06T12:38:31 | 2016-10-06T12:34:15 | Java | UTF-8 | PlantUML | false | false | 118 | puml | @startuml
package com.iluwatar.pipeline {
class App {
+ App()
+ main(args : String[]) {static}
}
}
@enduml | false | true | false | false | class |
35a4566c4c6440045d7eeeb41bf7fbfcad9d3fcc | e009d1eae92023d89425a31e52f79cad2f9800be | /OOP-Assign-TaxiRental/taxi_final_rental/App.plantuml | 2f0cf3eecbeffca67f1540fc619e8228c86fcfa6 | [] | no_license | michalkubiak98/Java-TaxiRental-Project | cc0998d1eccc7a4e9e621c0971356c3a737a5761 | ef6b4f3d8af791e99ee7ea95a74639b27cd688ab | refs/heads/master | 2023-06-03T05:24:26.499548 | 2021-07-03T15:19:23 | 2021-07-03T15:19:23 | 224,510,134 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 389 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace App {
class App.Main {
{static} + main()
+ start()
}
}
App.Main -up-|> javafx.application.Application
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
8f7c0cfe84af12ec0e64c9374871864ee6ded812 | bb3f32820bda05b57f97ca1aa93ac43abfc063f6 | /src/main/java/sample/main/main.plantuml | f74551cf99edc7f71187058d32214dbb7de59e6d | [] | no_license | enshin258/Bomberman | 077b379a157a4e897da79480be662abcb1895785 | cec9dcb41cbf75ec12275bc32a90df3076617b23 | refs/heads/master | 2020-09-22T12:58:10.011508 | 2020-01-07T15:15:44 | 2020-01-07T15:15:44 | 225,205,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,412 | plantuml | @startuml
title __MAIN's Class Diagram__\n
namespace sample.main {
class sample.main.Main {
{static} + main()
+ start()
}
}
namespace sample.main {
class sample.main.Menu {
~ exitButton : Button
~ newGameButton : Button
~ players_2 : RadioButton
~ players_3 : RadioButton
~ players_4 : RadioButton
{static} - actualStage : Stage
{static} - clickedButton : TypeOfButton
{static} - numberOfPlayers : int
- observers : Set<Observer>
+ addObserver()
{static} + getActualStage()
{static} + getNumberOfPlayers()
+ initialize()
+ notifyObservers()
+ removeObserver()
{static} ~ getClickedButton()
- userClickedButton()
}
}
namespace sample.main {
class sample.main.MenuObserver {
+ update()
}
}
namespace sample.main {
enum TypeOfButton {
EXIT
NEW_GAME
}
}
sample.main.Main -up-|> javafx.application.Application
sample.main.Menu .up.|> javafx.fxml.Initializable
sample.main.Menu .up.|> sample.interfaces.Observable
sample.main.MenuObserver .up.|> sample.interfaces.Observer
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 |
e5b32cbc234408f0dc64619f9c52cbc6b2c1ec26 | e7aab27dc3b56328c92d783d7fa8fce12d8ac544 | /kapitler/media/uml-class-arkivdel.puml | 468bacb40a0ae8d6a99f1f9232f01121db98d4a2 | [] | no_license | petterreinholdtsen/noark5-tjenestegrensesnitt-standard | 855019a61c8679a8119549e2824fa32ecc669e66 | 4673ba7134d83a6992bba6f9036c521c7ae1897f | refs/heads/master | 2023-06-11T12:08:52.134764 | 2023-03-05T11:05:21 | 2023-03-05T11:05:21 | 160,586,219 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,038 | puml | @startuml
skinparam nodesep 100
hide circle
class Arkivstruktur.Arkivdel <Arkivenhet> {
+tittel : string
+beskrivelse : string [0..1]
+arkivdelstatus : Arkivdelstatus
+dokumentmedium : Dokumentmedium [0..1]
+oppbevaringssted : string [0..*]
+avsluttetDato : datetime [0..1]
+avsluttetAv : string [0..1]
+referanseAvsluttetAv : SystemID [0..1]
+arkivperiodeStartDato : datetime [0..1]
+arkivperiodeSluttDato : datetime [0..1]
+referanseForloeper : SystemID [0..1]
+referanseArvtaker : SystemID [0..1]
+kassasjon : Kassasjon [0..1]
+utfoertKassasjon : UtfoertKassasjon [0..1]
+sletting : Sletting [0..1]
+skjerming : Skjerming [0..1]
+gradering : Gradering [0..1]
}
class Arkivstruktur.Arkiv <Arkivenhet> {
}
Arkivstruktur.Arkiv "arkiv 1" o--> "arkivdel 0..*" Arkivstruktur.Arkivdel
class Arkivstruktur.Mappe <Arkivenhet> {
}
Arkivstruktur.Arkivdel "arkivdel 0..1" o--> "mappe 0..*" Arkivstruktur.Mappe
class Arkivstruktur.Registrering <Arkivenhet> {
}
Arkivstruktur.Arkivdel "arkivdel 0..1" o--> "registrering 0..*" Arkivstruktur.Registrering
class Arkivstruktur.Klassifikasjonssystem <Arkivenhet> {
}
Arkivstruktur.Arkivdel "arkivdel 1..*" o--> "klassifikasjonssystem 0..1" Arkivstruktur.Klassifikasjonssystem
Arkivstruktur.Arkivdel "nestearkivdel 0..1" o--> "forrigearkivdel 0..1" Arkivstruktur.Arkivdel
class Arkivstruktur.Gradering <<dataType>> {
}
Arkivstruktur.Arkivdel *-- Arkivstruktur.Gradering
class Arkivstruktur.Kassasjon <<dataType>> {
}
Arkivstruktur.Arkivdel *-- Arkivstruktur.Kassasjon
class Arkivstruktur.Skjerming <<dataType>> {
}
Arkivstruktur.Arkivdel *-- Arkivstruktur.Skjerming
class Arkivstruktur.Sletting <<dataType>> {
}
Arkivstruktur.Arkivdel *-- Arkivstruktur.Sletting
class Arkivstruktur.UtfoertKassasjon <<dataType>> {
}
Arkivstruktur.Arkivdel *-- Arkivstruktur.UtfoertKassasjon
Arkivstruktur.Arkivdel o-- "sekundaerklassifikasjonssystem 0..*" Arkivstruktur.Klassifikasjonssystem
class Arkivstruktur.Arkivenhet {
}
Arkivstruktur.Arkivenhet <|-- Arkivstruktur.Arkivdel
@enduml
| false | true | false | false | class |
d4ab27667feb30f7dae8f590dd9dd6ff6023413d | 394a56ac07462a7305e934de37c3ed3a5363f56a | /Análise/UC11_Modificar_Candidatura/UC11_SSD/UC11_SSD.plantuml | 963fad837b0830a7b3d6d43aa3b83612d58612f8 | [] | no_license | pedro-miguez/upskill_java1_labprg_grupo3 | 69ab871772f2a2faba901ee894aea2f8fe7392bb | 99bed16b491e8f0fbceb86e621cb9164e7722586 | refs/heads/main | 2023-03-24T02:26:43.964110 | 2021-03-22T10:50:54 | 2021-03-22T10:50:54 | 331,625,464 | 1 | 0 | null | 2021-03-19T18:00:07 | 2021-01-21T12:45:29 | Java | UTF-8 | PlantUML | false | false | 650 | plantuml | @startuml
actor Freelancer
activate Freelancer
Freelancer -> ":Sistema" : 1 Inicia a alteracao a candidatura
activate ":Sistema"
":Sistema" --> Freelancer : 2 mostra as candidaturas em aberto
deactivate ":Sistema"
Freelancer -> ":Sistema" : 3 seleciona candidatura que pretende editar
activate ":Sistema"
":Sistema" --> Freelancer : 4 mostra os dados da candidatura e permite que os campos sejam alterados
deactivate ":Sistema"
Freelancer -> ":Sistema" : 5 altera os dados pretendidos
activate ":Sistema"
":Sistema" --> Freelancer : 6 atualiza a candidatura e informa sucesso da\n operacao e mostra os dados atualizados
deactivate ":Sistema"
@enduml | false | true | false | false | sequence |
58f9dfeb520a3155ce3ecf17b33a56f0d4d6048e | fe5965763a5bf5013a7ed9fd6d7685e1e9e37856 | /docs/diagrams/task/TaskClassDiagram.puml | 24b26c1510fd663fe5c244011bba69d25180a7f7 | [
"MIT"
] | permissive | AY1920S1-CS2103T-W11-1/main | 063061de6c02e2d84b71adacd006b76f8292ca84 | 884578867b5cfd435f84162ec0c29518b918f819 | refs/heads/master | 2020-07-21T05:29:39.323018 | 2019-11-11T15:10:17 | 2019-11-11T15:10:17 | 206,759,466 | 0 | 11 | NOASSERTION | 2019-11-11T15:14:26 | 2019-09-06T09:23:32 | Java | UTF-8 | PlantUML | false | false | 759 | puml | @startuml
left to right direction
class Task {
- {final} id: Id
- {final} problem: Problem
- {final} isDone: Boolean
- {final} dueDate: LocalDate
+ equals(Object other): boolean
+ getAuthor(): Author
+ getDescription(): Description
+ getDifficulty(): Difficulty
+ getDueDate(): LocalDate
+ getId(): Id
+ getIsDone(): boolean
+ getName(): Name
+ getProblem(): Problem
+ getRemark(): Remark
+ getStatusIcon(): String
+ getSource(): Source
+ getTags(): Set<Tag>
+ getWebLink(): WebLink
+ hashCode(): int
+ isSameTask(Task other): boolean
+ toString(): String
+ updateDueDate(LocalDate): Task
+ updateProblem(Problem): Task
+ updateStatus(boolean): Task
}
@enduml
| false | true | false | false | class |
ea83aeb1eea86cde292e6c96cff02f1b9954bee0 | 601b8aa76cc86c159c2736107d0779e31a2a7c56 | /docs/diagrams/current_data_read_process.plantuml | 599f05300836cf24c817df3175a97ae72684b71e | [
"Apache-2.0"
] | permissive | PhilipeRLeal/datacube-core | 531b7156b777fa4b631b6af163f65473055a58d9 | 81bed714f2e5cb30a2492f1b0cf3397b79141c3a | refs/heads/develop | 2022-12-13T20:36:52.188166 | 2019-10-16T01:08:03 | 2019-10-23T02:45:40 | 217,332,524 | 2 | 0 | Apache-2.0 | 2022-12-08T01:08:59 | 2019-10-24T15:29:47 | null | UTF-8 | PlantUML | false | false | 1,616 | plantuml | @startuml
title Current Process for Loading Data
'!include ..\datacube-core\docs\plantuml.cfg
actor User
participant Datacube
User -> Datacube: Requests some data using dc.load_data()
activate Datacube
Datacube -> Datacube: create_storage()
activate Datacube
loop for each measurement/band
Datacube -> Datacube: data_func()
activate Datacube
hnote over Datacube
create a destination array in RAM
Dimensions are <irregular dims> + <geobox_dims>
end note
loop for each time slice
Datacube -> Datacube: _fuse_measurement()
activate Datacube
Datacube -> DataLoader: reproject_and_fuse()
note right
DataLoader is not currently a class, it is
functions in the ""datacube.storage.storage"" module
end note
activate DataLoader
participant DataSource #PaleGreen
loop for each DataSource
create DataSource
DataLoader -> DataSource: read_from_source()
activate DataSource
participant BandSource #Cyan
create BandSource
DataSource -> BandSource: open() returns BandSource
activate BandSource
alt Non reprojecting read
BandSource -> BandSource: _read_native()
else ReProjecting read
BandSource -> BandSource: reproject()
end
BandSource --> DataSource: append data into destination array
deactivate BandSource
deactivate DataSource
end
deactivate Datacube
DataLoader --> Datacube: return data
deactivate DataLoader
deactivate Datacube
end
end
Datacube --> User: return data
deactivate Datacube
@enduml | false | true | false | false | sequence |
1ae373a118105b47d016e6c50cf724e728aad0c0 | d2e6e889b4a681e5cebf002b4f370f7a9cabd50a | /src/main/resources/docs/diagramme-classes-planning.plantuml | 5baba82fd8a1539f19d5919258731516397be638 | [] | no_license | lnquaidorsay/formations-batch | 17ef6e85cfa4bf287ac6d55775f9a5b1a380da06 | d6bce96738e26eee7c1f68fd6d3c01e038d9e855 | refs/heads/main | 2023-01-10T21:36:12.492134 | 2020-11-13T14:20:46 | 2020-11-13T14:20:46 | 311,198,435 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 262 | plantuml | @startuml
class PlanningItem {
-String libelleFormation
-String descriptifFormation
-LocalDate dateDebutSeance
-LocalDate dateFinSeance
}
class Planning {
-Formateur formateur
-List<PlanningItem> seances
}
Planning *-- PlanningItem : concerne >
@enduml | false | true | false | false | class |
05bd5d1a9e50913dea1da3752ad6fa01f11a42a9 | 387351656ae2683783d43ace87b34b5aadad302f | /webapp-java/dxa-module-51degrees/data-updates-in-process.puml | c66e88cf81719e60389d8e6b6d70de064bf91704 | [
"Apache-2.0"
] | permissive | RWS/dxa-modules | 13a7967c0b5f18ee6da68adcd875dbf26c79cd85 | 0cf12991fb12f1f066be54e5ae3a20fe6e2c7dd6 | refs/heads/develop | 2023-06-07T17:11:46.803580 | 2023-05-31T17:17:29 | 2023-05-31T17:17:29 | 40,543,559 | 0 | 3 | Apache-2.0 | 2023-05-31T17:07:04 | 2015-08-11T13:34:42 | TypeScript | UTF-8 | PlantUML | false | false | 1,460 | puml | @startuml
title 51Degrees Data Update Check On Request
(*) --> "Application is working"
--> "Http Request came"
--> "getCurrentFile()"
--> "check if license key is in Localization"
if "license key is in Localization"
--> [YES] "choose data file"
--> === FC ===
else
--> [NO] "license key is not in Localization"
--> "check if license key is in properties"
if "license key is in properties"
--> [YES] "choose data file"
--> === FC ===
else
--> [NO]"license key is in properties"
--> "choose LITE file"
--> === FC ===
endif
endif
=== FC === --> "File is chosen"
--> "check if file needs update"
if "update is needed" then
-right-> [YES] "update current file"
note right
actual update of LITE file
will happen next night;
update of real data file
happens immediately non-blocking
end note
if "update failed" then
-up-> [YES] "check if this is LITE"
if "this is LITE" then
--> [YES] "Fallback to DEFAULT values"
-->(*)
else
--> [NO] "Fallback"
note right
in the following order:
CM > Properties > LITE
end note
"Fallback" --> "Choose next"
--> === FC ===
endif
else
--> [NO] === RET ===
endif
else
--> [NO] === RET ===
endif
=== RET === --> "Return file"
-->(*)
@enduml | false | true | false | false | activity |
e9f7b4dce2ddc0ecb16c692089ebefead046c649 | 1468b015f5ce882dbd39dc75c9a6560179a936fb | /umlRender/project.puml | 67fe913473ca2b1366aefb89ea56a9c084f6f68d | [] | no_license | Escobaj/HearthstoneResolver | cbfc682993435c01f8b75d4409c99fb4870b9bb3 | c93b693ef318fc9f43d35e81931371f626147083 | refs/heads/master | 2021-04-30T22:31:01.247134 | 2017-01-31T00:05:32 | 2017-01-31T00:05:32 | 74,474,216 | 8 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,028 | puml | @startuml
abstract class ATargetable{
-int _currentHealth
-int _defaultHealth
-int _maxHealth
#int getDefaultHealth()
+void takeDamage(int factor)
+void boostHealth(int health)
+void heal(int factor)
+void fixedHealth(int newHealth)
+int getHealth()
+int getMaxHealth()
}
class Player {
-std::vector<ACard> _hands
-std::vector<ACard> _board
-std::vector<ACard> _deck
-std::vector<ACard> _played
-std::map<std::string, int> _variables
-std::vector<ACard> _secrets
-AHeroPower *_heroPower
-AWeapons *_weapons
-int _maxMana
-int _currentMana
+void draw()
+void draw(int nb)
+int getVariable(std::string &key)
+void updateVariable(std::string &key, int nb)
+void replaceVariableValue(std::string &key, int nb)
+void resetVariable(std::string &key)
+void updateManaMax(int nb)
+void updateMana(int nb)
+void setManaMax(int nb)
+void setMana(int nb)
+void setDeck(std::vector<ACard &> deck)
}
abstract class ACard {
-int _defaultCost
-int _beforeEventCost
-int _currentCost
-Target _target
-int _order
-int _id
-std::string _name
-Class _membership
+State play(unsigned int order)
+void updateCost(int cost)
+void alterCost(int factor)
+bool requirement()
+int getId()
+int getOrder()
+std::string getName()
}
abstract class ADamager {
-int _defaultDamage
-int _currentDamage
-int _attackMax
-int _attackRemain
-bool _canAttack
+rbool attackRequirement()
+void attack(Playable target)
+void setAttackMax(int nb)
+void setCanAttack(bool canAttack)
}
abstract class AMinion {
-bool _targelable
-bool _stealth
-bool _taunt
-bool _divineShield
#CardType _type
+bool getTaunt()
+bool getStealth()
+bool getTargelable()
+bool getDivineShield()
+void setDivineShield(bool divineShield)
+void setTargelable(bool targelable)
+void setTaunt(bool taunt)
+void setStealth(bool stealth)
+void silence()
+void destroy()
}
abstract class ASpell {
+void run()
+void run(Playable target)
}
abstract class AWeapon {
#int _defaultDurability
#int _currentDurability
+int attack(Playable target)
+void AffectDurability(int factor)
}
abstract class AHeroPower {
-int counterHeroPower
-int currentCounter
}
note "All <b>minion</b> card \nextends from this class" as N1
note "All <b>spell</b> card \nextends from this class" as N2
note "All <b>Weapon</b> card \nextends from this class" as N3
note "All <b>Hero power</b>\nextends from this class" as N4
ADamager <|-- AMinion
ADamager <|-- AWeapon
ATargetable <|-- Player
ATargetable <|-- AMinion
ACard <|-- ASpell
ACard <|-- AHeroPower
ACard <|-- ADamager
AMinion -- N1
ASpell -- N2
AWeapon -- N3
AHeroPower -- N4
newpage
enum Target {
ALL
PLAYER
OPPONENT_PLAYER
ALLIE_PLAYER
MINION
ALLIE_MINION
OPPONEMENT_MINION
NONE
}
enum Class {
NEUTRAL
DRUID
HUNTER
MAGE
PALADIN
PRIEST
ROGUE
SHAMAN
WARLOCK
WARRIOR
GRIMY_GOONS
KABAL
JADE_LOTUS
}
enum CardType{
DRAGON
MECA
BEAST
MURLOC
DEMON
PIRATES
TOTEM
GENERAL
SPELL
HERO_POWER
WEAPON
}
enum State{
FORBIDDEN
TARGET_REQUIRED
SUCCESSFULL
}
newpage
class EventHandler{
-GameManager gameInstance
-bool endGame
#vector<EventType> _queue
#vector<...> _...
+void ApplyEvent()
+void check()
+Player *isWin()
}
abstract class GameManager {
+Player _player1
+Player _player2
+int _turn
+EventHandler _event
+bool initFromFile(std::string &filename)
}
enum EventType{
DEATHRATLE
BATTLECRY
DEALDAMAGE
...
}
@enduml | false | true | false | false | class |
83e8009835b4b03cad38f4f734fb95a4a4bc1286 | 7e6fa61a8595cd38195713b5c7698f5de6f7c7b3 | /base/013/diagrama.puml | 8280b00fc98e6eb96bec54adb8f01f106af82ca1 | [] | no_license | qxcodepoo/arcade | 3ff1852792a47584f00c1ab9fd5011ebb2c4b830 | 3722a8c976a51829b2b6f4913360c23bf114433a | refs/heads/master | 2023-08-31T04:07:06.255292 | 2023-08-25T03:16:42 | 2023-08-25T03:16:42 | 217,410,955 | 36 | 42 | null | 2020-09-24T13:22:18 | 2019-10-24T23:12:40 | C++ | UTF-8 | PlantUML | false | false | 3,683 | puml | '--
@startuml
skinparam defaultFontName Hasklig
skinparam dpi 150
'==
class Account {
# balance: double
# accId: int
# clientId: str
' typeId {CC, CP}
# typeId: str
--
' inicializa os atributos
' saldo inicial é 0
+ Account(accId: int, clientId: str, typeId: str)
' realiza o depósito
+ deposit(value: double)
' realiza o saque
' verifique se há saldo suficiente
+ withdraw(value: double)
' realiza a transferência da conta this para conta other
' verifique se há saldo suficiente na conta this
+ transfer(other: Account, value: double)
' retorna as informações na conta no formato
' "accId:clientId:balance:typeId"
+ toString(): str
--
' retorna o saldo
+ getBalance(): double
' retorna o id
+ getId(): int
' retorna o id do cliente
+ getClientId(): str
' retorna o tipo da conta
+ getTypeId(): str
--
' método abstrato que realiza a atualização mensal da conta
' o método deve ser implementado nas subclasses
+ {static} updateMonthly(): void
}
class CheckingAccount {
' taxa de manutenção da conta
# monthlyFee: double
--
' chama o construtor da superclasse
' repassando os valores accId, clientId e typeId = CC
+ CheckingAccount(accId: int, clientId: str)
' decrementa o saldo da conta em monthlyFee
+ updateMonthly(): void
}
class SavingsAccount {
' taxa de rendimento mensal
# monthlyInterest: double
--
' chama o construtor da superclasse
' repassando os valores accId, clientId e typeId = CP
+ SavingsAccount(accId: int, clientId: str)
' incrementa o saldo da conta em monthlyInterest %
+ updateMonthly(): void
}
class Client {
# clientId: str
# accounts: list[Account]
--
+ Client(name: str, clientId: str)
' adiciona uma conta à lista de contas do cliente
+ addAccount(acc: Account)
' retorna a lista de contas do cliente
+ getAccounts(): list[Account]
' retorna o id do cliente
+ getClientId(): str
' retorna o nome do cliente e a lista com os ids das contas no formato
' nome [id1, id2, ...]
+ toString(): str
}
class Agency {
- accounts: Map<int, Account>
- clients : Map<str, Client>
- nextAccountId: int
--
' busca pela conta e dispara excessão se não encontrar
- getAccount(int accountId): Account
--
' inicializa os atributos
+ BankAgency()
' cria uma conta para o cliente
' cria um objeto cliente e insere no mapa de clientes
' cria uma conta corrente e uma conta polpança e insere no mapa de contas
' faz o vínculo cruzado colocando as contas dentro do objeto do cliente
+ addClient(clientId: str): void
' procura pela conta usando o getAccount e realiza a operação de depósito
' utiliza o método deposit da classe Account
+ deposit(accId: int, value: double): void
' procura pela conta e realiza a operação de saque
' utiliza o método withdraw da classe Account
+ withdraw(accId: int, value: double): void
' procura pela conta e realiza a operação de transferência
' utiliza o método transfer da classe Account
+ transfer(fromAccId: int, toAccId: int, value: double): void
' realiza a operação de atualização mensal em todas as contas
+ updateMonthly(): void
}
'--
CheckingAccount --|> Account
SavingsAccount --|> Account
Client "1" o-- "1" CheckingAccount
Client "1" o-- "1" SavingsAccount
Agency "1" *-- "0..*" Account
Agency "1" *--l- "0..*" Client
' Circle --|> Shape
' Rectangle --|> Shape
' V2D -- Circle
' V2D -- Rectangle
@enduml | false | true | true | false | class |
41d37896cadbd62daaf284ddd11ef4dba1ae8099 | 638211f00ec9bc259759735fb9e9e6676d9abcb2 | /CarShowroom/src/main/main.plantuml | 21a5038cd0df15829ad664cd75d5cd4a22f0b646 | [] | no_license | codeblooded-alchemist/CarShowroom | 95fed918d563c667ada9cfa380f79e087e83d4e2 | 0ad3922ffe4818fa68971f5b20c930eac4988fd7 | refs/heads/master | 2022-11-16T04:08:09.933218 | 2020-07-16T17:08:10 | 2020-07-16T17:08:10 | 154,523,792 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 872 | plantuml | @startuml
title __MAIN's Class Diagram__\n
package main {
class DBConnect {
{static} ~ connection : Connection
{static} ~ statement : Statement
{static} ~ DB_URL : String
{static} + connect()
{static} + getconnection()
{static} + getStatement()
{static} + disconnect()
}
}
package main {
class Main {
{static} + stage : Stage
+ start()
{static} + main()
}
}
abstract class Parameters {
+ Parameters()
{abstract} + getRaw()
{abstract} + getUnnamed()
{abstract} + getNamed()
}
Main -up-|> Application
Main +-down- Parameters
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 |
50dab107d00468fa035a2c1babfaad6789f9ccf9 | 77ca229438244df1616594a24c28c82f6e293aa1 | /plantuml/Engine.puml | d1c8954e0bed78d56a124c59928f8131d2a74df6 | [] | no_license | RinwaOwuogba/NameOuterSpace | 4d12cfcbcaaaa9d0acccb88fee7f4518c2e2f193 | 2872e05434296b8d4a8ce9f79494416f8d06088f | refs/heads/master | 2023-08-17T09:19:32.903887 | 2021-09-21T11:29:41 | 2021-09-21T11:29:41 | 391,706,946 | 4 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,022 | puml | @startuml
class Engine {
+ Engine(pathToRepo:string, connectionString:string, pathToStopWords:string)
+ GetMetaInfo() : MetaDetails
+ UpdateMetaInfo(updatedmeta:MetaDetails) : void
+ GetAllDocuments() : List<FileDocument>
+ GetDocuments(ids:HashSet<int>) : List<FileDocument>
+ GetDocuments(names:HashSet<string>) : List<FileDocument>
+ GetDocument(id:int) : FileDocument
+ GetDocument(filename:string) : FileDocument
+ GetAllDocumentsCount() : long
+ AddDocument(filename:string) : int
+ DeleteDocument(id:int) : void
+ DeleteDocument(filename:string) : void
+ DeleteDocumentReferencesFromInvertedIndex(docId:int) : void
+ GetAllWords() : List<string>
+ GetWordDocument(word:string) : WordDocument
+ GetWordDocuments(words:HashSet<string>) : List<WordDocument>
+ AddIntoReverseIndex(docId:int, words:Dictionary<string,long>) : void
+ CountInvertedIndex() : long
+ DeleteWord(word:string) : void
+ Kill() : void
}
IEngine <|-- Engine
@enduml
| false | true | false | false | class |
768d2b2b3c89732f70c3a3b3e7ce11ce786a542e | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /documentation/serviceApi/pm/performance/media/src/performanceProfileStates.puml | 33a99f30903a127c28321bbe07b757c9028f95f6 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 561 | puml | @startuml performanceProfileStates
'skinparam Linetype polyline
'skinparam Linetype ortho
skinparam state {
BackgroundColor White
BorderColor Black
}
hide empty description
'''decisions'''
state validation_successful <<choice>>
note right of validation_successful : Validation successful?
''' diagram'''
[*] -d-> acknowledged
acknowledged -d-> validation_successful
validation_successful -l-> rejected: No
validation_successful -d-> active: Yes
active -d-> active: Modify
active --> deleted: Delete
rejected -d-> [*]
deleted -d-> [*]
@enduml | false | true | false | false | sequence |
00175a69d670b85162326d9dacc5c2798f1ab295 | 27a045c374d7118b8019e71c6a166ccfef66a4cc | /JavaBasics/src/com/futuretask/FutureTask.puml | eb37685e3af534eb31107eee7a058df6482157bf | [] | no_license | colonel8377/code | 6f422c687226bae928ab6e377e321e4671d70d18 | 07ee8b4fc0d325341c6866395b5bda6d44271707 | refs/heads/master | 2022-01-04T20:09:21.777194 | 2018-12-26T14:15:39 | 2018-12-26T14:15:39 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 623 | puml | @startuml
class FutureTask<V> {
}
interface RunnableFuture<V> {
void run();
}
interface Runnable {
public abstract void run();
}
interface Future<V> {
boolean cancel(boolean mayInterruptIfRunning);
boolean isCancelled();
boolean isDone();
V get() throws InterruptedException, ExecutionException;
V get(long timeout, TimeUnit unit)
throws InterruptedException, ExecutionException, TimeoutException;
}
interface Callable<V> {
V call() throws Exception;
}
RunnableFuture <|.. FutureTask
Runnable <|-- RunnableFuture
Future <|-- RunnableFuture
Callable <-- FutureTask
@enduml | false | true | false | false | class |
11f0f580f9c60f041d8ebefef6656716409c63fd | 5ca78f3c988590165f0ed39826daa7fec21d8c74 | /src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-framework-webhook.puml | a5aaae5eac1636cef7ade7b37593b9f943fde130 | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | mitelg/platform | 9bbfc8310ab1f096c456995c79055cba6c46834f | 68bfa7597cdd9e3b97037f3ad0bc7290e61ac1ec | refs/heads/master | 2023-04-16T04:24:28.800380 | 2021-01-13T07:39:25 | 2021-01-13T07:39:25 | 167,531,369 | 0 | 1 | MIT | 2020-12-28T15:31:39 | 2019-01-25T10:40:55 | PHP | UTF-8 | PlantUML | false | false | 1,193 | 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(ShopwareCoreFrameworkWebhookWebhookDefinition, "webhook\n(Webhooks)") {
primary_key(id) id
not_null(name) string
not_null(eventName) string
not_null(url) string
appId foreignKey
not_null(createdAt) createdAt
updatedAt updatedAt
}
ForeignTable(ShopwareCoreFrameworkAppAppDefinition, "app") {
}
' relationshipd
ShopwareCoreFrameworkWebhookWebhookDefinition --> ShopwareCoreFrameworkAppAppDefinition
@enduml
| false | true | false | false | uml-unknown |
692f3f63270f9e8dadc0cea482098df1318248fc | 5336f97e3eb81d4ad9b2939726bfde17ae682ea7 | /core/src/com/mygdx/game/simulation/simulation.plantuml | c9cf4b35da9bb06c0862e93e41ccbdbe92bab07b | [] | 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 | 5,078 | plantuml | @startuml
title __SIMULATION's Class Diagram__\n
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.CarsSpawnManager {
- counter : int
- downLast : Car[]
- interval : int
- leftLast : Car[]
- rightLast : Car[]
- upLast : Car[]
+ getDownLast()
+ getLeftLast()
+ getRightLast()
+ getUpLast()
+ setDownLast()
+ setLeftLast()
+ setRightLast()
+ setUpLast()
+ update()
~ CarsSpawnManager()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.MyGdxGame {
- backgroundImage : Texture
- batch : SpriteBatch
- cars : ArrayList<Car>
- pedestrians : ArrayList<Pedestrian>
- shapeRenderer : ShapeRenderer
- trafficLights : ArrayList<TrafficLight>
- trafficParticipants : ArrayList<TrafficParticipant>
+ create()
+ dispose()
{static} + getRandomBetween2()
+ keyDown()
+ keyTyped()
+ keyUp()
+ mouseMoved()
+ render()
+ scrolled()
+ spawnCarsDown()
+ spawnCarsLeft()
+ spawnCarsRight()
+ spawnCarsUp()
+ spawnPedestrianDown()
+ spawnPedestrianLeft()
+ spawnPedestrianRight()
+ spawnPedestrianUp()
+ touchDown()
+ touchDragged()
+ touchUp()
{static} - getRandom()
- getRandomCarImage()
{static} - getRandomNumberInRange()
- paintLights()
- spawnTrafficLights()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.PedestrianSpawnManager {
- counter : int
- interval : int
+ update()
~ PedestrianSpawnManager()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.ReadingThread {
+ getData()
+ run()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.ResourceManager {
{static} + load()
{static} + save()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.SaveData {
- cars : ArrayList<Car>
- pedestrians : ArrayList<Pedestrian>
- trafficParticipants : ArrayList<TrafficParticipant>
+ getCars()
+ getPedestrians()
+ getPedestriansCrossingManager()
+ getTrafficLightManager()
+ getTrafficParticipants()
+ setData()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.SpawnException {
- direction : String
- lane : int
+ getDirection()
+ getLane()
~ SpawnException()
~ SpawnException()
~ SpawnException()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.TrafficSimulationException {
~ TrafficSimulationException()
~ TrafficSimulationException()
}
}
namespace com.mygdx.game.simulation {
class com.mygdx.game.simulation.WritingThread {
+ run()
~ WritingThread()
}
}
com.mygdx.game.simulation.CarsSpawnManager .up.|> java.io.Serializable
com.mygdx.game.simulation.CarsSpawnManager o-- com.mygdx.game.simulation.MyGdxGame : myGdxGame
com.mygdx.game.simulation.MyGdxGame .up.|> com.badlogic.gdx.InputProcessor
com.mygdx.game.simulation.MyGdxGame -up-|> com.badlogic.gdx.ApplicationAdapter
com.mygdx.game.simulation.MyGdxGame o-- com.mygdx.game.simulation.CarsSpawnManager : carsSpawnManager
com.mygdx.game.simulation.MyGdxGame o-- com.mygdx.game.simulation.SaveData : data
com.mygdx.game.simulation.MyGdxGame o-- com.mygdx.game.traffic.TrafficParticipant : participant
com.mygdx.game.simulation.MyGdxGame o-- com.mygdx.game.traffic.PedestriansCrossingManager : pedCrossingManager
com.mygdx.game.simulation.MyGdxGame o-- com.mygdx.game.simulation.PedestrianSpawnManager : pedestrianSpawnManager
com.mygdx.game.simulation.MyGdxGame o-- com.mygdx.game.traffic.TrafficLightManager : trafficLightManager
com.mygdx.game.simulation.PedestrianSpawnManager .up.|> java.io.Serializable
com.mygdx.game.simulation.PedestrianSpawnManager o-- com.mygdx.game.simulation.MyGdxGame : myGdxGame
com.mygdx.game.simulation.ReadingThread o-- com.mygdx.game.simulation.SaveData : data
com.mygdx.game.simulation.SaveData .up.|> java.io.Serializable
com.mygdx.game.simulation.SaveData o-- com.mygdx.game.traffic.PedestriansCrossingManager : pedestriansCrossingManager
com.mygdx.game.simulation.SaveData o-- com.mygdx.game.traffic.TrafficLightManager : trafficLightManager
com.mygdx.game.simulation.SpawnException -up-|> com.mygdx.game.simulation.TrafficSimulationException
com.mygdx.game.simulation.WritingThread o-- com.mygdx.game.simulation.SaveData : data
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 |
d7ab07fcad6f1b71be2476f38ed39d508a6f346d | 714f9744f76cc2af51f47b4dbe9fd7b38e616ce4 | /doc/uml/component-sikkerhet-tilgangslogg.puml | c97f8a34133642b10e995f11780d3724f032f338 | [] | no_license | sopra-steria-norge/pharmacy.no | 3082b724b7c93b327a8ad884d9fee2ad40a92321 | b0d3e8ee3d6a358a96b6401bd23fc789ad865882 | refs/heads/master | 2021-07-18T19:51:32.802750 | 2017-10-24T22:10:24 | 2017-10-24T22:14:58 | null | 0 | 0 | null | null | null | null | ISO-8859-15 | PlantUML | false | false | 554 | puml | @startuml
title Tilgangslogg
actor Bruker1
actor Bruker2
participant POS
box "DIFA"
participant DIFA
database Innsynslogg
end box
actor Revisor
Bruker1 -> POS: Ekspeder resept
POS -> DIFA
DIFA -> Innsynslogg
Bruker1 <-- POS
Bruker1 -> POS: Vis historikk
POS -> DIFA
DIFA -> Innsynslogg
Bruker1 <-- POS
Bruker1 -> POS: Vis historikk
POS -> DIFA
DIFA -> Innsynslogg
Bruker2 <-- POS
Revisor -> Innsynslogg: Aktivitet utført av helsepersonell
Revisor <-- Innsynslogg
Revisor -> Innsynslogg: Aktivitet utført mot pasient
Revisor <-- Innsynslogg
@enduml
| false | true | true | false | sequence |
867af5c4f7aeec879f0eafc96a29f84b0f91f0b6 | 9cc7c4099f6330f9a4384b56427d40d46b9d6f4a | /diagrams/horizontal-pod-autoscaler.puml | d5c1acb96f966900b98adbee75f38ee0f8d28add | [
"MIT"
] | permissive | maulvialf/belajar-kubernetes | 0e28a11d9f75b3b1d17ffbe86151ecedf3bb603e | 809ac5514e9c0c188a3775f53e0d340b0587c132 | refs/heads/master | 2022-10-22T09:32:07.830441 | 2020-06-13T17:43:51 | 2020-06-13T17:43:51 | 272,653,376 | 1 | 0 | MIT | 2020-06-16T08:32:21 | 2020-06-16T08:32:20 | null | UTF-8 | PlantUML | false | false | 474 | puml | @startuml
node "Kubernetes Cluster" {
node "Node 1" {
component "Pod 1" as pod1
component "..." as pod3
}
node "Node 2" {
component "Pod 1" as pod2
component "..." as pod4
}
component "Deployment / ReplicaSet" as deployment
component "Metrics Server" as metrics
component "Horizontal Pod Autoscaler" as horizontal
}
pod1 --> metrics
pod2 --> metrics
metrics -up-> horizontal
horizontal -up-> deployment
deployment --> pod1
deployment --> pod2
@enduml
| false | true | false | false | component |
0fc70bf0d1bca6d8448d1cb9fdfc3405292a7b2c | b8b944a1c6b89f9426d9c85b2560968b41e913d2 | /resources/UML/Enemy.puml | fe702a7f9e06d9acad93fff18e9beb814e117af1 | [] | no_license | anaidde/VladianaInvaders | e0076b7a4e2b4cc48de6cabfa4ee0158888f5ec0 | aff35c93b657c06ca9038884126fe0dd0a7a094a | refs/heads/master | 2022-11-12T10:03:36.383752 | 2020-07-02T09:30:37 | 2020-07-02T09:30:37 | 261,261,460 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,104 | puml | @startuml
class Engine{
// SINGLETON \\\\
GameObjects : private
void update() : private
void redraw() : private
void initialiseEngine() : private
void run() : public THREAD SLEEP
}
class GameObjects{
Player player: private
Enemy enemy: private
Gun gameGuns : private
SpaceShip gameShips : private
void update() : private
}
interface Enemy {
void update() : public
void draw(Graphics graphics) : public
}
class EasyEnemy {
SpaceShip enemySpaceShip : private
Rectangle mesh : private
Point coordinates : private
Dimension dimension : private
Double health : private
void update() : public
void draw(Graphics graphics) : public
void behavior() : public
}
class RegularEnemy {
SpaceShip enemySpaceShip : private
Rectangle mesh : private
Point coordinates : private
Dimension dimension : private
Double health : private
void update() : public
void draw(Graphics graphics) : public
void behavior() : public
}
class HardEnemy {
SpaceShip enemySpaceShip : private
Rectangle mesh : private
Point coordinates : private
Dimension dimension : private
Double health : private
void update() : public
void draw(Graphics graphics) : public
void behavior() : public
}
class BossEnemy {
SpaceShip enemySpaceShip : private
Rectangle mesh : private
Point coordinates : private
Dimension dimension : private
Double health : private
void update() : public
void draw(Graphics graphics) : public
void behavior() : public
}
class StaticEnemy {
Rectangle mesh : private
Point coordinates : private
Dimension dimension : private
Double health : private
void update() : public
void draw(Graphics graphics) : public
void behavior() : public
}
class SpaceShip {
Double health : private
BufferedImage sprite : private
Rectangle spriteDimension : private
}
class Projectile {
ProjectileType projectileType : private
Rectangle mesh : private
Point coordinates : private
Dimension dimension : private
void update() : public
void draw(Graphics graphics) : public
}
enum ProjectileType {
/*
TBD
*/
}
interface FiringPattern {
Projectile fireNextProjectile() : public
}
class Gun {
ProjectileType projectileType : private
FiringPattern firingPattern : private
}
class LinearFiringPattern{
}
class ScatterShotFiringPattern{
}
class ChainGunFiringPattern{
}
Engine "1" *-- "1" GameObjects
GameObjects "1" *-- "1.." Enemy
GameObjects "1" *-- "1.." SpaceShip
GameObjects "1" *-- "1.." Gun
GameObjects "1" *-- "1.." Projectile
GameObjects "1" o-- "1.." Projectile
FiringPattern ^-- LinearFiringPattern
FiringPattern ^-- ScatterShotFiringPattern
FiringPattern ^-- ChainGunFiringPattern
FiringPattern "1" *-- "1.." Projectile
Gun "1" o-- "1" FiringPattern
Enemy "1" o-- "1" SpaceShip
Enemy "1" o-- "1" Gun
Enemy ^-- EasyEnemy
Enemy ^-- RegularEnemy
Enemy ^-- HardEnemy
Enemy ^--- BossEnemy
Enemy ^-- StaticEnemy
ProjectileType . Projectile
@enduml | false | true | false | false | class |
4bb6e20c0f29b3edbf04ff6e7106d783c05c52c3 | c071afa8c9ef0c26eae424fb721f292f903d7289 | /gfx/uml/NewAPI/OldDatabaseConnectionExtentsFromNewAPI.plantuml | 0780ac8b4f2df2e54be6c34bb098be4d4415955d | [] | no_license | Konafets/thesis | 4628b7e675164690e4b1a8345eecd11c20d9cbfc | 94a27a586356d3b7356d0690cf4ed5dd6a0dc6b7 | refs/heads/master | 2016-09-06T18:47:47.614390 | 2014-05-26T17:51:30 | 2014-05-26T17:51:30 | 18,177,420 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 222 | plantuml | @startuml
set namespaceSeparator none
hide empty members
hide empty methods
class Konafets.DoctrineDbal.Persistence.Legacy.DatabaseConnection extends Konafets.DoctrineDbal.Persistence.Doctrine.DatabaseConnection
@enduml
| false | true | false | false | class |
6e0470c66ea057c51af6a3764e6a46f48eaa890d | 416e4bed32d57656132056c19bbef1007f7fb07c | /engine.puml | a0905c6b16035ef9417864d4f42912afee66495d | [] | no_license | ChauShunWai/Covid-Game | b3d787133e62530855355e2125fae8bb68153d0b | 42e181b3140eecfb47db779c88e078e1e8c1eb10 | refs/heads/master | 2023-05-27T17:07:17.934393 | 2021-06-15T03:25:38 | 2021-06-15T03:25:38 | 377,023,260 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,782 | puml | @startuml
'https://plantuml.com/class-diagram
class City{
- -population: int
- -travelBanned: bool
- -activeCases: int
- -recoveredCases: int
- -numNewCases: int
- -numFormerCases: int
- -medicationFacilities: int
+ +City(id: int, name: String, population: int,travelBanned: bool, active: int, recovered: int)
+ +addMedicationFacilities()
+ +decreaseMedicationFacility()
+ +increaseActiveCases(incr: int) throws MedicalException
+ +decreaseActiveCases(decrement: int)
+ +setTravelBanned(val: bool)
+ +setNumNewCases(numNewCases: int)
+ +getNumNewCases(): int
+ +setNumFormerCases(numFormerCases: int)
+ +getNumFormerCases(): int
+ +getId(): int
+ +getName(): String
+ +getPopulation(): int
+ +isTravelBanned(): bool
+ +getActiveCases(): int
+ +getRecoveredCases(): int
+ +getMedicationFacilities(): int
+ +isNewCasesIncreasing(): bool
+ +toString(): String
}
class Player{
- -haStaffs: List<HealthAuthorityStaff>
- -contTechniques: List<Containment>
- -name: String
- -budget: int
- -tourismIncome: int
- -points: int
- -city: City
+ +Player(name: String, budget: int, tourismIncome: int, points: int)
+ +toString(): String
+ +decreaseBudget(decrement: int)
+ +increaseBudget(increment: int)
+ +addPoints(increment: int)
+ +decreasePoints(decrement: int)
+ +hasReadyHAStaff(): boolean
+ +computeNewInfectedCases() throws MedicalException
+ +generateUnexpectedDistasters()
+ +addContainmentTech(cont: Containment)
+ +setCity(city: City)
+ +incrementProtection_level(level: int, cont: Containment)
+ +incrementVaccination_level(level: int, cont: Containment)
+ +halfProtection_level()
+ +halfVaccination_level()
+ +getHAStaffs(): List<HealthAuthorityStaff>
+ +getCity(): City
+ +getContainTechniques(): List<Containment>
+ +getName(): String
+ +getBudget(): int
+ +getTourismIncome(): int
+ +getPoints(): int
}
class GameEngine{
- -gameMap: GameMap
- -turns: int
- -getSelection(min: int, max: int, name: String)
- -processPlayersTurn() throws MedicalException, BudgetRunoutException, NoEnoughBudgetException
- -selectHAStaff(player: Player): HealthAuthorityStaff
- -selectAndPerformAction(player: Player, haStaff: HealthAuthorityStaff, city: City) throws BudgetRunoutException, NoEnoughBudgetException
- -processPlayerCommand(command: int, player: Player, haStaff: HealthAuthorityStaff, city: City) throws NoEnoughBudgetException, BudgetRunoutException
+ +announceWinner()
}
class GameMap{
- -players: List<Player>
+ +getPlayers(): List<Player>
+ +loadPlayers()
}
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)
+ +buildMasksFactory(player: Player, city: City)
+ +toString() : String
}
class Epidemiologist{
# #getBonusPoints(): int
+ +upgradeFMaskQuality(player: Player, city: City)
+ +developVaccine(player: Player, city: City)
+ +upgradeVaccine(player: Player, city: City)
+ +toString() : String
}
HealthAuthorityStaff <|-- ChiefExecutive
HealthAuthorityStaff <|-- HealthMinister
HealthAuthorityStaff <|-- Epidemiologist
abstract class Containment{
# #protection_level
# #medication_level
# #vaccination_level
+ +getProtection_level(): int
+ +getMedication_level(): int
+ +getVaccination_level(): int
+ +setProtection_level(level: int)
+ +setMedication_level(level: int)
+ +setVaccination_level(level: int)
+ +toString() : String
}
class FaceMask{
+ +FaceMask()
+ +getProtection_level(): int
}
class Isolation{
+ +Isolation()
+ +getProtection_level(): int
}
class Treatment{
+ +Treatment()
+ +getMedication_level(): int
}
class Vaccination{
+ +Vaccination()
+ +getVaccination_level(): int
}
Containment <|-- FaceMask
Containment <|-- Isolation
Containment <|-- Treatment
Containment <|-- Vaccination
Player <-- City
Player <-- Containment
Player <-- HealthAuthorityStaff
GameEngine <-- GameMap
@enduml | false | true | false | false | class |
b8a73c625915f6aa016ae34564ca183c083cfdeb | 2dcdd926f9be227228d004fd56821e1bb06231db | /TD1.2.1.plantuml | d08067951d7c0243b56da9efcbcae088b69338cd | [
"MIT"
] | permissive | IUT-Blagnac/bcoo-Laurian-Dufrechou | cba6b9fe464a807a7e9f5798998c4df1fb51dbd7 | 36c0311cf21c29a5be2cc11a84b0db9974637629 | refs/heads/main | 2023-04-05T11:32:08.954076 | 2021-04-06T07:53:03 | 2021-04-06T07:53:03 | 337,647,380 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 415 | plantuml |
@startuml
class Examen
{
date
coefficient
}
class Enseignant
{
nom
prenom
}
class etudiant as "Etudiant"
{
idnumEtu
nom
prenom
date_de_naissance
}
class cour as "Cour"
{
code
titre
}
etudiant "1.*" --- "0.*" Examen
(etudiant, Examen) . note
etudiant "1.*" --- "0.*" cour : suivre
Examen --- "1" cour : conserner
cour "*" --- "1" Enseignant : enseigner
class note
{
valeur
}
@enduml
| false | true | false | false | class |
7c40d45a82520c90a50b2d94543a4ae20e018cc8 | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Contracts.Admin/Sales/IReturnsManager.puml | cfb23d3a838673a3a4d5d8b9aa75c90eab4ac49f | [
"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 | 90 | puml | @startuml
interface IReturnsManager {
}
IServiceContractBase <|-- IReturnsManager
@enduml
| false | true | false | false | class |
f26fee29e3a6fdc3bcacb4ea1e2c4f6192a77ac0 | ace7dbd4445973a93e7114680ba108840e9104ea | /UML/von_base/doc/pic/src/boot.trustee.puml | 1c0b7552299bc62cf9cff5f53862428e1e4b6a9a | [
"Apache-2.0"
] | permissive | shlemph/indy-quickstart | 2ca8150d949725ee5e942391c62365a01466a1ea | c2ff7151dd7eca193f07b12ccb15ffaa647fe499 | refs/heads/master | 2020-04-05T05:12:13.528645 | 2018-11-14T02:29:15 | 2018-11-14T02:29:15 | 156,585,591 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,257 | puml | @startuml
/'
Copyright 2017-2018 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 BaloxPadding 20
title Trustee VON Anchor Boot Sequence
box "Indy" #LightBlue
participant "Ledger" as ledger
endbox
actor "Trustee VON Anchor" as tan
=== BOOTSTRAP ==
tan -> tan: call get_nym(did)
group get_nym() implements
tan -> ledger: Look up own nym
ledger --> tan: nym if present
end
alt Nym not present
tan -[#blue]> tan: call send_nym(did, verkey, alias, role)
group send_nym() implements
tan -[#blue]> ledger: send anchor nym
ledger --[#blue]> tan: anchor nym
end
end
@enduml
| false | true | false | false | usecase |
07dd77f570d069b578c0fe87514d6996ca89c40c | 19c8cf12c2433ce45c00c02593d98ace63b0eb2d | /design/test-event-task/sequence.puml | 844db844c03a6e2620a2274bc5671f7a7c081c75 | [
"Apache-2.0"
] | permissive | racker/salus-docs | 269ca0a88757798b2fe1aee33938f6a6f0d4924c | 83a44cb1732b79b14adee0ee88af97f53b2bb6f4 | refs/heads/master | 2021-06-24T19:58:49.516310 | 2021-01-19T14:44:28 | 2021-01-19T14:44:28 | 194,307,660 | 3 | 0 | Apache-2.0 | 2022-06-06T16:48:45 | 2019-06-28T17:02:08 | null | UTF-8 | PlantUML | false | false | 1,132 | puml | @startuml
title Test Event-Task Sequence
hide footbox
actor User
participant "Public API" as PublicAPI
collections "Event Engine Management" as EEM
collections "Kapacitor" as Kap
participant "Kafka/UMB" as Kafka
User -> PublicAPI : POST test-event-task
activate PublicAPI
PublicAPI -> EEM : POST test-event-task
activate EEM
EEM -> EEM : track test event task request
note right
CompletableFuture of request
and kapacitor reference
is stored in a ConcurrentHashMap
with generated test-task-id as
the key.
end note
EEM -> Kap : create task
EEM -> Kap : write measurement
deactivate EEM
activate Kap
Kap -\ Kafka : produce event
deactivate Kap
Kafka -\ EEM : consume event
activate EEM
group if test event task tracked by this EEM instance
EEM -> EEM : handle event result or timeout
activate EEM
note right
Complete the CompletableFuture keyed
by test-task-id and remove the tracking
entry.
end note
EEM -> Kap : get task stats
EEM -> Kap : delete task
EEM --> PublicAPI : event content
deactivate EEM
deactivate EEM
end
PublicAPI --> User : event content
deactivate PublicAPI
@enduml | false | true | false | false | sequence |
a4dfbf521d64f7733e920027d571740601a96df5 | ecc219554fe9c14d408eb3e300c88087ddd7879d | /src/main/java/com/shiye/mir/service/impl/ScriptsUML.puml | b87347451106160e0ec151a1124927077cf21c03 | [] | no_license | Evilock/bfsu-cs-mir | 219a6c6a068b03e561c8aad68eb5459f7de1c840 | 8f5ad31aecc37215c808a0890ba19643308f7642 | refs/heads/master | 2023-03-19T08:11:10.921532 | 2021-03-18T06:56:39 | 2021-03-18T06:56:39 | 298,587,872 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,012 | puml | @startuml
ScriptsService <|- ScriptsServiceImpl
ScriptsServiceImpl <.. WordsUtils
ScriptsServiceImpl <.. java.io.File
ScriptsServiceImpl <.. java.lang.Runtime
ScriptsServiceImpl <.. java.lang.Process
ScriptsServiceImpl <.. EnumResponseCode
java.lang.Runtime -- java.lang.Process
interface ScriptsService{
void generateBat(fileName)
EnumResponseCode scriptExec(cmdPath)
void generateShell(fileName)
EnumResponseCode shellExec(shellPath)
}
class ScriptsServiceImpl{
String savePath
void generateBat(fileName)
EnumResponseCode scriptExec(cmdPath)
void generateShell(fileName)
EnumResponseCode shellExec(shellPath)
}
class java.io.File{
boolean createNewFile()
File getParentFile()
}
class WordsUtils{
String suffixAbortion(input)
String blankToUnder(input)
}
class java.lang.Runtime{
Runtime getRuntime()
}
class java.lang.Process{
InputStream getInputStream()
}
enum EnumResponseCode{
FILE_SEPARATE_SUCCESS
FILE_SEPARATE_FAILED
FILE_UP_TOO_BIG
}
@enduml | false | true | false | false | class |
feaec0e2e4c9cb24f21f3c49730ce22ca5c3adf5 | 5e5ca31b31621ae31a6bb57f63d65a7114a64e34 | /centralspace-app/src/main/java/com/fenixcommunity/centralspace/app/rest/dto/accountDtoUml.puml | d9112699103b8f1983b85db923982d1e67fe83e2 | [] | no_license | fenixcommunity/centralspace | 1286e3f767f4aea7a7180f309f8eec27c14dd346 | 18eae2051c4cdcff8463f665cd4078385413c91a | refs/heads/master | 2022-12-24T08:31:52.563979 | 2021-04-18T16:14:18 | 2021-04-18T16:14:18 | 168,011,464 | 1 | 0 | null | 2022-12-14T20:45:15 | 2019-01-28T18:13:37 | Java | UTF-8 | PlantUML | false | false | 188 | puml | @startuml
class AccountDto {
+ {static} defaultValue: Long
- id: Long
- login: String
- mail: String
+ AccountDto(Long, String, String)
+ getMail() : String
}
@enduml
| false | true | false | false | class |
37d932305d97a1e941ec224006aa98ab3d6cf953 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.puml | 1095de7817f1ec1d010d768d25d36264b0a16345 | [] | 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 | 301 | puml | @startuml
class WarpTextExample {
+ AngleMultiplier : float = 1.0f
+ SpeedMultiplier : float = 1.0f
+ CurveScale : float = 1.0f
Awake() : void
Start() : void
WarpText() : IEnumerator
}
MonoBehaviour <|-- WarpTextExample
WarpTextExample o-> "VertexCurve" AnimationCurve
@enduml
| false | true | false | false | class |
8a8bd257c5b91702bdb6ed047b1836df1254fc1b | ae856e50e04474c8ab1f4bd57ca78ba391ac8ccd | /ch10-decorator-patterns/diagrams/decorator-pattern-road-class-diagram5.puml | bdcec8c23cc2a865df090a00e3aea31aeafb9397 | [] | no_license | outofworld98/java-design-patterns | d7c41ad0a41bf1f3d1ba4a9f4f2a212658aec427 | 75964a5387cad3f54726d0f7ba98b0765ca0d650 | refs/heads/master | 2022-03-29T17:38:14.238273 | 2019-01-17T11:10:00 | 2019-01-17T11:10:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 800 | puml | @startuml
abstract class Display {
+ draw() : void
}
class RoadDisplay {
+ draw() : void
}
class DisplayDecorator {
+ DisplayDecorator(decoratedDisplay : Display)
+ draw() : void
}
class LaneDecorator {
+ LaneDecorator(decoratedDisplay : Display)
+ draw() : void
- drawLane() : void
}
class TrafficDecorator {
+ TrafficDecorator(decoratedDisplay : Display)
+ draw() : void
- drawTraffic() : void
}
class CrossingDecorator {
+ CrossingDecorator(decoratedDisplay : Display)
+ draw() : void
- drawCrossing() : void
}
Display <|-- RoadDisplay
Display <|-- DisplayDecorator
Display --* DisplayDecorator : -decoratedDisplay
DisplayDecorator <|-- LaneDecorator
DisplayDecorator <|-- TrafficDecorator
DisplayDecorator <|-- CrossingDecorator
@enduml | false | true | false | false | class |
3c8a9b7487de420bcdd27ef0293b28ed2304def1 | 7d618c99d0bcee98fa0fdc58c1d8e1880c78d192 | /Reeks1/Reeks1/UML.puml | c2b6521c266e4884168fdf2a7917f5c6ff9d87ed | [
"MIT"
] | permissive | LorenzoDeBie/SoftwareOntwikkelingII | f67cdea65841ae2220180134cac20fc98926ec2f | 0f8a6fc6f89ca99b5339a16bd1da3f31182263b9 | refs/heads/master | 2020-08-05T23:44:58.411612 | 2019-12-05T14:38:19 | 2019-12-05T14:38:19 | 212,760,021 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 187 | puml | @startuml
skinparam classAttributeIconSize 0
abstract class Person {
+ Name : string
+ WelcomeMessage : string
}
class Student {
- StudentNumber : int
}
Person <|-- Student
@enduml | false | true | true | false | class |
e95db4c4e015940f35d07496bb2864920cf4592a | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyCustomerResetPassword.puml | ae5a2eba634b739a44f6e0e3c35b34eea66c2709 | [] | 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 | 341 | 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 MyCustomerResetPassword [[MyCustomerResetPassword.svg]] {
tokenValue: String
newPassword: String
}
@enduml
| false | true | false | false | class |
be4b6625567745a098017779ff6f9e21b8b3a723 | b1262013febdaad2395fac8d230e7f8d6fd6eea0 | /stream-legal-entity/docs/legal-enttiy-saga-sequence.puml | 3a8dcb616da571d3f0048e67642ef070bcd79ac8 | [] | no_license | sgkale/stream-services-2.0 | c037cc51b61878f8a308df8004aad538ea0b0f90 | 88ad2b5ca2ecdbb082dcdc07ea4b330617976c46 | refs/heads/master | 2023-07-13T10:25:05.060866 | 2021-08-12T08:21:16 | 2021-08-12T08:21:16 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,582 | puml | @startuml
autonumber
actor User
box Backbase Stream
participant "LegalEntitySaga" as SAGA
participant "ProductIngestionSaga" as PIS
end box
database "Job Profile Templates" as JBT
box Backbase
collections DBS
end box
loop Legal Entity
SAGA -> SAGA: Process Legal Entity
activate SAGA
SAGA -> DBS: Check if Legal Entity exists
DBS -> SAGA: Existing Legal Entity
alt Legal Entity Does not Exist
SAGA -> DBS: Create new Legal Entity
DBS -> SAGA: Legal Entity ID
end alt
SAGA -> SAGA: Set Legal Entity
deactivate SAGA
SAGA -> SAGA: Process Administrators
loop Administrators
SAGA -> DBS: Check if User exists
DBS -> SAGA: Exiting User
alt User does not exists
SAGA -> DBS: Create User
DBS -> SAGA: Internal ID
end alt
SAGA -> SAGA: Set Administrators
end loop
deactivate SAGA
SAGA -> SAGA: Process Service Agreement
activate SAGA
SAGA -> DBS: Get Existing Service Agreement
DBS -> SAGA: Service Agreement
alt Service Agreement Does not exist
SAGA -> DBS: Create Master Service Agreement with Administrators
DBS -> SAGA: Master Service Agreement ID
end alt
SAGA -> SAGA: Set Service Agreement
deactivate SAGA
SAGA -> SAGA: Process Job Profiles
activate SAGA
loop Job Profile Users
activate SAGA
SAGA -> JBT: Get Job Profile Templates
JBT -> SAGA: Job Profile Templates
alt Get Job Profile Job Profile User
SAGA -> SAGA: Job Profile Templates
end alt
SAGA -> DBS: Update Job Profiles
DBS -> SAGA: Updated Job Profiles
SAGA -> SAGA: Update Job Profile User
deactivate SAGA
end loop
deactivate SAGA
SAGA -> SAGA: Process Products
activate SAGA
loop Product Group
activate PIS
loop Arrangements
activate PIS
PIS -> DBS: Get Existing Arrangement ID
DBS -> PIS: Existing Arrangement ID
PIS -> DBS: Update Existing Arrangement
alt Arrangement does not exists
PIS -> DBS: Create Arrangement
DBS -> PIS: Arrangement ID
end alt
PIS -> PIS: Update Arrangement
deactivate PIS
end loop
PIS -> PIS: Setup Data Group
PIS -> DBS: Get Existing Data Group
PIS -> DBS: Update Access Group with Arrangement Ids
alt Data Group Does not exist
PIS -> DBS: Create Data Group With Arrangement Ids
DBS -> PIS: Access Group ID
end alt
PIS -> PIS: Process Job Profile Users
loop Job Profile Users
activate PIS
PIS -> JBT: Get Job Profile Templates
JBT -> PIS: Job Profile Templates
alt Get Job Profile Job Profile User
PIS -> PIS: Job Profile Templates
end alt
PIS -> DBS: Update Job Profiles
DBS -> PIS: Updated Job Profiles
PIS -> PIS: Update Job Profile User
PIS -> DBS: Assign Permissions For Data Group, Business Functions and Service Agreement
DBS -> PIS: Approval Status
deactivate PIS
PIS -> PIS: Update Job Profile Users
end loop
SAGA -> SAGA: Process Subsidiaries
activate SAGA
loop Subsidiaries
SAGA -> SAGA: Set Parent Legal Entity ID In Subsidiary
SAGA -> SAGA: Process Subsidiary Recursively
SAGA <- SAGA: Update Subsidiary
end loop
deactivate SAGA
end loop
@enduml | false | true | false | false | sequence |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.