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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f5a1dd89d50612d3000f66fa05c55731b5aba4fd | 387351656ae2683783d43ace87b34b5aadad302f | /webapp-java/dxa-module-51degrees/data-updates-on-start.puml | 624425d7914ae3fbaccc44ede02e647ad73f6eef | [
"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 | 365 | puml | @startuml
title 51Degrees Data Updates
(*) --> "App Started"
if "license found in properties" then
--> [Yes] "pre-load data file"
if "failed to update" then
--> [Yes] "pre-load LITE file"
else
--> [No] "App Start complete"
endif
else
--> [No] "pre-load LITE file"
endif
-->"App Start complete"
-->(*)
@enduml | false | true | false | false | activity |
eba23ca4d94b5b9bb53d250ef1d4d8c771286f9f | 01cf293a1b781ae355c4c8eb8409a6e1c85428e9 | /7.BaseDatos/docs/diagrams/src/vistaCasosUso/casoUsoPlay.plantuml | 89f3e031c4d0f18a8a356d023eafe7e9a4091099 | [] | no_license | EnriqueCF/requirements | fe59445d677f9bae4262950cbd9ab61688e90013 | 8afdff6df115f97585ff980abe253d4da387de90 | refs/heads/master | 2023-06-13T23:42:22.698560 | 2021-07-11T18:59:59 | 2021-07-11T18:59:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,308 | plantuml | @startuml StateDiagramFluxPlayState
state A as "IN_GAME"
state B as " "
state C as " "
state D as " "
state E as " "
state F as " "
state I as " "
state J as " "
state K as " "
state L as " "
state O as " "
state P as " "
state Q as " "
state if <<choice>>
state if2 <<choice>>
state if3 <<choice>>
state if5 <<choice>>
[*] --> A
A --> if: Current turn player requests Play
if --> B: [pieces of current turn player on board 0..2]
if --> C
B --> D: System requests to introduce a coordinate
D --> if2: Current turn player introduces a coordinate
if2 --> E: [error]
note on link
Coordinate is not valid
Coordinate is occuped
end note
if2 --> F
E --> P: System shows error
F --> if5: System shows updated board
C --> I: System requests to introduce origin coordinate
I --> if3: Current turn player introduces origin coordinate
if3 --> J: [error]
note on link
Coordinate is not valid
Coordinate is empty
Piece is not of active player
end note
if3 --> K
J --> P: System shows error
K --> L: System requests to introduce target coordinate
L --> if2: Current turn player introduces target coordinate
if5 --> O: [winner]
O --> Q: System shows winner message
if5 --> P
Q --> [*]: System allows Save
P --> [*]: System allows Play\nSystem allows Redo\nSystem allows Undo\nSystem allows Exit
@enduml | false | true | false | false | sequence |
7665ba22e712c55beb1a1b5cc209c3cee0b057eb | c45ce074df6e9c8bb54ce906f387a4ec1730b2d6 | /diagrams/design/patterns/class/behavior/interpreter.puml | 01ce6bf3af23ccc628069e574a0eb21b41dc9405 | [] | no_license | eromero-kreatech/clean-code | 82a4a62ae6d76985bc77e7a16f5d9890c41b652f | e5a29e0dacead4f25005e67163ffb57fbc4d2d44 | refs/heads/master | 2023-06-26T21:50:19.104747 | 2021-07-24T00:51:11 | 2021-07-24T00:51:11 | 388,963,257 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 704 | puml | @startuml INTERPRETER
class Client
class Context
interface AbstractExpression {
+ interpret()
}
class TerminalExpression {
+ interpret() : Context
}
class NonterminalExpression {
+ factoryMethod() : Context
}
hide empty members
Context <- Client
Client --> AbstractExpression
AbstractExpression <|-- TerminalExpression
AbstractExpression <|-- NonterminalExpression
AbstractExpression --* NonterminalExpression
note as N1
<b><color:royalBlue>Interpreter</color></b>
<b>Type:</b> Behavioral
Given a language, define a representation
for its grammar along with an interpreter
that uses the representation to interpret
sentences in the language.
end note
@enduml
| false | true | false | false | class |
13c69cf1a9d38501a9ad11d03713d6c8f2ff21c7 | 242cec44956a09b0667479e8aa21e31cd7852a45 | /doc/E_Setting_Mode.puml | 1ed4bda640741a33af05930e4d6fc210f7c55ead | [] | no_license | HomeMadeBots/Home_Temperature_Controller | 37c46be3b5c1af2a24dce92e1749bbe1d1b1aea9 | 0214bd15908e051b8b357586170d041cb99f5388 | refs/heads/main | 2023-08-27T18:09:22.584959 | 2021-09-29T12:44:23 | 2021-09-29T12:44:23 | 407,500,019 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 285 | puml | @startuml
class E_Setting_Mode <<Enumerated_Type>>
{
Allows to model a data representing the
setting mode of the Home Temperature
Controller system.
--
NO_SETTING
DAY_SETTING
HOUR_SETTING
MINUTE_SETTING
LOW_TEMPERATURE_SETTING
HIGH_TEMPERATURE_SETTING
}
@enduml | false | true | false | false | class |
0321a335b2467ecd430334e1d32a4cf2d20ec124 | 261f3d4fd238b13676398b33df2304142bf505a0 | /docs/hrDiagram/CommandListConnection.puml | 99d6bcee10b057d032990dbbdd9ccc21b0637b3e | [] | no_license | AY2021S1-CS2113T-F14-1/tp | 8a917e7e02274af464095b31ee695282f294737c | 9e05f06f9f338e4059e96faa992c22a1bad412e7 | refs/heads/master | 2023-01-09T19:46:16.021830 | 2020-11-13T12:07:10 | 2020-11-13T12:07:10 | 300,518,941 | 0 | 4 | null | 2020-11-13T12:07:11 | 2020-10-02T06:13:45 | Java | UTF-8 | PlantUML | false | false | 356 | puml | @startuml
participant ":CommandListConnection" as CommandFinanceSummary
participant ":MemberList" as FinanceList
->CommandFinanceSummary:execute()
activate CommandFinanceSummary
CommandFinanceSummary -> FinanceList : searchConnection()
activate FinanceList
loop numOfMembers
FinanceList -> FinanceList: searcheRole()
end
return output
return output
@enduml | false | true | false | false | sequence |
7beaa428a975af75dba07efdb9aa42cbbb11a3fe | 2233ecb0f0dfb124b3c413aaf3fa1a1916059739 | /docs/Deliverable_51/hyperties/location/location-setup.puml | d328650b17e593a1659d96ff746efb0879f7404b | [
"Apache-2.0"
] | permissive | reTHINK-project/scenario-service-implementation | 5dc30cd716d3a875ea8edfd93f8e62fde33adecc | c8c0a90299938bf00e31c01ca72a49eab26f8436 | refs/heads/master | 2021-03-16T09:11:46.864830 | 2017-06-01T14:43:15 | 2017-06-01T14:43:15 | 37,669,121 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,039 | puml | @startuml
autonumber
participant "My City\nApp" as app
participant "Location\nHyperty" as myLocationHyperty
participant "Location\nData Object" as myLocationDO
participant "Generic Sensor\nAPI" as sensorAPI
participant "GPS\nAPI" as locationAPI
participant "Syncher" as sync
create myLocationHyperty
app -> myLocationHyperty : new()
group discover available Context Location
app -> myLocationHyperty : discoverLocationContext()
myLocationHyperty -> sensorAPI : discoverSensors( )
myLocationHyperty <-- sensorAPI : list of Sensors
alt Check GPS sensor
myLocationHyperty -> myLocationHyperty : check GPS Sensor Exists
else GPS Sensor Exists
create locationAPI
myLocationHyperty -> locationAPI : new
myLocationHyperty -> sync : create( )
create myLocationDO
sync -> myLocationDO : new
sync -> sync : Object.observe\n( myLocation, syncCallback )
myLocationHyperty <-- sync : return myHeart
end
app <-- myLocationHyperty : return myLocation Context
app -> app : Object.observe\n( myLocation, callback )
@enduml
| false | true | false | false | sequence |
0fac32f9f68d54826ded642ff3dcdcb78f583283 | 2fb511103c59818877995683457b0354425135e7 | /doc/accp.puml | a6f0b79d4a63ca61181c63aae5713ac5d6fc630e | [
"Apache-2.0"
] | permissive | soldatov-s/accp | 60575654ecbc9cde88e7eb74948ee853dee54cc2 | d8795453355a620b1bb8961bc817f4c9fbe9d037 | refs/heads/master | 2023-02-27T08:46:34.814093 | 2021-02-01T20:53:48 | 2021-02-01T20:53:48 | 296,838,243 | 0 | 0 | Apache-2.0 | 2021-01-10T15:13:33 | 2020-09-19T10:00:02 | null | UTF-8 | PlantUML | false | false | 957 | puml | @startuml accp
title The architecture of Access Control Caching Proxy
rectangle "client" as client
rectangle "introspector" as introspector
rectangle "backend" as backend
queue "business analytic queue" <<rabbitmq>> as rabbitmq
database "accp-redis" <<redis>> as redis {
rectangle "external cache" as external_cache
rectangle "limits states" as limits_states
}
frame accp {
rectangle "introspection" as introspector_interface
rectangle "limiter" as limiter
rectangle "in memory cache" as inmemory_cache
rectangle "external cache" as external_cache_interface
}
introspector_interface <-down-> introspector
external_cache_interface <-down-> external_cache
client <-right-> introspector_interface
introspector_interface <-> limiter
limiter <-> inmemory_cache
limiter <-down--> limits_states
inmemory_cache <-> external_cache_interface
inmemory_cache -down-> rabbitmq
external_cache_interface <-> backend
rabbitmq -> backend
@enduml | false | true | false | false | sequence |
e21e6239860b62e991bd386c25e2b513bdd2cf2b | 1a8874c7e2ef16261124919da31928fa435caf0d | /docs/class_diagram.plantuml | 058213184b07f3846f709e18055dd64ffbeed79f | [
"MIT"
] | permissive | gwutama/MAD-Todo | 86326bf9fad782781d7907a3105e54239251e013 | d652d036e3f4bdfd2df63e8478d8c8d56653279f | refs/heads/master | 2020-03-29T13:30:26.451241 | 2015-07-11T19:19:55 | 2015-07-11T19:19:55 | 38,472,084 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 12,837 | plantuml | @startuml
' *****************************************************************************
'
' BASIC CONFIGS
'
' *****************************************************************************
skinparam classAttributeIconSize 0
hide circle
hide empty members
hide empty fields
hide empty methods
scale 10000 width
' *****************************************************************************
'
' ANDROID CLASSES AND INTERFACES
'
' *****************************************************************************
namespace android.app {
class Activity
class ListFragment
class Fragment
Fragment <|-- ListFragment
}
namespace android.content.SharedPreferences {
interface OnSharedPreferenceChangeListener <<interface>>
}
namespace android.content.DialogInterface {
interface OnClickListener <<interface>>
}
namespace android.preference {
abstract class PreferenceFragment <<abstract>>
}
namespace android.widget {
class ArrayAdapter
}
namespace android.os {
class AsyncTask
}
namespace android.database.sqlite {
abstract class SQLiteOpenHelper <<abstract>>
}
namespace android.content {
abstract class Context <<abstract>>
Context <|-- android.app.Activity
Context <|-- android.app.Fragment
}
' *****************************************************************************
'
' PROJECT CLASSES AND INTERFACES
'
' *****************************************************************************
namespace com.utama.madtodo.fragments {
' -------------------------------------------------------------------------
' FRAGMENTS
' -------------------------------------------------------------------------
interface ViewUpdateable <<interface>>
class CreateFragment {
#nameEditText : EditText
#descriptionEditText : EditText
#expiryDateEditText : EditText
#expiryTimeEditText : EditText
#expiryDatePickerDialog : DatePickerDialog
#expiryTimePickerDialog : TimePickerDialog
#isImportantCheckBox : CheckBox
#expiry : Calendar
+onCreateView(inflater : LayoutInflater, container : ViewGroup, savedInstanceState : Bundle) : View
+onResume() : void
}
class DetailsFragment {
#nameTextView : TextView
#descriptionTextView : TextView
#expiryTextView : TextView
#isImportantTextView : TextView
#isDoneTextView : TextView
+onCreateView(inflater : LayoutInflater, container : ViewGroup, savedInstanceState : Bundle) : View
+updateView(id : long) : void
}
class EditFragment {
-isDoneCheckBox : CheckBox
+onCreateView(inflater : LayoutInflater, container : ViewGroup, savedInstanceState : Bundle) : View
+updateView(id : long) : void
}
class SettingsFragment {
-prefs : SharedPreferences
-email : Preference
-password : Preference
-offlineMode : Preference
-apiRoot : Preference
-forgetCredentials : Preference
+onCreate(Bundle savedInstanceState) : void
+onSharedPreferenceChanged(sharedPreferences : SharedPreferences, key : String) : void
}
class TodoListFragment {
~adapter : TodoListAdapter
~todos : List<LocalTodo>
-sortOrder : String
-offlineModeTextView : TextView
+setSortOrder(String sortOrder) : void
+onActivityCreated(savedInstanceState : Bundle) : void
+forceRefreshList() : void
+onListItemClick(l : ListView, v : View, position : int, id : long) : void
}
class TodoListAdapter {
+TodoListAdapter(context : Context, todos : List<LocalTodo>)
+getView(position : int, convertView : View, parent : ViewGroup) : View
}
}
namespace com.utama.madtodo {
' -------------------------------------------------------------------------
' ACTIVITIES
' -------------------------------------------------------------------------
interface ActionDeleteable <<interface>>
interface ActionEditable <<interface>>
interface ActionSaveable <<interface>>
class CreateActivity {
~createFragment : CreateFragment
#onCreate(savedInstanceState : Bundle) : void
+onOptionsItemSelected(item : MenuItem) : boolean
}
class DetailsActivity {
~detailsFragment : DetailsFragment
#onCreate(Bundle savedInstanceState) : void
#onResume() : void
}
class EditActivity {
~editFragment : EditFragment
#onCreate(savedInstanceState : Bundle) : void
#onResume() : void
+onOptionsItemSelected(item : MenuItem) : boolean
}
class LoginActivity {
-emailText : AutoCompleteTextView
-passwordText : EditText
-signInButton : Button
-loginProgress : ProgressDialog
-testConnectionProgress : ProgressDialog
-loginErrorTextView : TextView
-user : RemoteUser
#onCreate(savedInstanceState : Bundle) : void
#onResume() : void
+attemptAutoLogin() : void
+onCreateOptionsMenu(menu : Menu) : boolean
+onOptionsItemSelected(item : MenuItem) : boolean
}
class SettingsActivity {
-settingsFragment : SettingsFragment
#onCreate(savedInstanceState : Bundle) : void
}
abstract class SingleTodoActivity <<abstract>> {
#deleteDialog : AlertDialog.Builder
#activeTodoId : long
#onCreate(Bundle savedInstanceState) : void
#onResume() : void
+onCreateOptionsMenu(menu : Menu) : boolean
+onOptionsItemSelected(item : MenuItem) : boolean
+onClick(dialog : DialogInterface, which : int) : void
}
class TodoListActivity {
-{static}isSynchronizedOnStart : boolean
-todoListFragment : TodoListFragment
#onCreate(savedInstanceState : Bundle) : void
+onCreateOptionsMenu(menu : Menu) : boolean
+onOptionsItemSelected(item : MenuItem) : boolean
}
}
namespace com.utama.madtodo.models {
' -------------------------------------------------------------------------
' MODELS
' -------------------------------------------------------------------------
class DbConsts {
+{static}String DB_NAME
+{static}int DB_VERSION
+{static}String TABLE
+{static}String SORT_IMPORTANCE_DATE
+{static}String SORT_DATE_IMPORTANCE
+{static}String DEFAULT_SORT
}
class DbHelper {
+DbHelper(context : Context)
+onCreate(db : SQLiteDatabase) : void
+onUpgrade(db : SQLiteDatabase, oldVersion : int, newVersion : int) : void
}
class LocalRemoteTodo {
-{static}boolean offlineMode
+LocalRemoteTodo()
+LocalRemoteTodo(todo : TodoEntity)
+{static}LocalRemoteTodo findOne(id : long)
+{static}List<LocalRemoteTodo> findAll()
+{static}List<LocalRemoteTodo> findAll(sortOrder : String)
#create() : long
#update() : long
+delete() : long
+{static}sync() : void
+{static}boolean isOfflineMode()
}
class LocalTodo {
-{static}dbHelper : DbHelper
+LocalTodo()
+LocalTodo(todo : TodoEntity)
+{static}findOne(id : long) : LocalTodo
+{static}findAll() : List<LocalTodo>
+{static}findAll(sortOrder : String) : List<LocalTodo>
#create() : long
#update() : long
+delete() : long
+{static}long purge() : long
}
class RemoteTodo {
-{static}RESOURCE_PATH : String
-{static}apiRoot : URL
+RemoteTodo()
+RemoteTodo(todo : TodoEntity)
+{static}findOne(long remoteId) : RemoteTodo
+{static}findAll() : List<RemoteTodo>
#create() : long
#update() : long
+delete() : long
+{static}purge() : long
}
class RemoteUser {
-email : String
-password : String
-{static} RESOURCE_PATH : String
-{static}apiRoot : URL
-{static}PASSWORD_MIN_LENGTH : int
-{static}PASSWORD_MAX_LENGTH : int
-{static}EMAIL_ADDRESS_REGEX : Pattern
+RemoteUser()
+RemoteUser(remoteUser : RemoteUser)
+isEmailValid(String email) : boolean
+isPasswordValid(String password) : boolean
+auth() : boolean
}
abstract class TodoEntity <<abstract>> {
#id : long
#remoteId : long
#name : String
#description : String
#expiry : Date
#isImportant : Boolean
#isMarkedDone : Boolean
+TodoEntity()
+TodoEntity(todo : TodoEntity)
#{abstract}create() : long
#{abstract}update() : long
+{abstract}delete() : long
+save() : long
}
}
namespace com.utama.madtodo.tasks {
' -------------------------------------------------------------------------
' ASYNC TASKS
' -------------------------------------------------------------------------
class AuthAsync {
-context : Context
-user : RemoteUser
+AuthAsync(Context context, RemoteUser user)
#doInBackground(params : Void[]) : Integer
#onPostExecute(result : Integer) : void
#onCancelled() : void
}
class DeleteAsync {
-context : Context
+DeleteAsync(context : Context)
#doInBackground(params : Long[]) : Integer
#onPostExecute(result : Integer) : void
}
class SaveAsync {
#context : Context
+SaveAsync(context : Context)
#doInBackground(params : LocalRemoteTodo[]) : Integer
#onPostExecute(result : Integer) : void
}
class SyncAsync {
-context : Context
+SyncAsync(context : Context)
#doInBackground(params : Void[]) : Integer
#onPreExecute() : void
#onPostExecute(result : Integer) : void
}
class TestConnectionAsync {
~context : Context
+TestConnectionAsync(context : Context)
#doInBackground(params : Void[]) : Boolean
#onPostExecute(canContactWebService : Boolean) : void
}
class UpdateImportanceAsync {
+UpdateImportanceAsync(context : Context)
#onPostExecute(result : Integer) : void
}
class UpdateMarkedDoneAsync {
+UpdateMarkedDoneAsync(context : Context)
#onPostExecute(result : Integer) : void
}
}
namespace com.utama.madotodo.utils {
' -------------------------------------------------------------------------
' UTILITIES
' -------------------------------------------------------------------------
class SimpleRestClient {
-HttpURLConnection conn
-URL apiRoot
-URL resourceUrl
-String requestMethod
-{static}int CONNECT_TIMEOUT_MS
+SimpleRestClient(apiRoot : URL, requestMethod : String)
+setPath(path : String) : void
+open() : void
+close() : void
+read() : String
+readJson() : JSONObject
+write(body : String) : void
+write(body : JSONObject) : void
}
}
' *****************************************************************************
'
' RELATIONS AND COMPOSITIONS/AGGREGATIONS
'
' *****************************************************************************
namespace com.utama.madtodo {
' -------------------------------------------------------------------------
' ACTIVITIES
' -------------------------------------------------------------------------
SingleTodoActivity <|-- CreateActivity
ActionSaveable <|.. CreateActivity
SingleTodoActivity <|-- DetailsActivity
ActionEditable <|.. DetailsActivity
ActionDeleteable <|.. DetailsActivity
CreateActivity <|-- EditActivity
ActionSaveable <|.. EditActivity
ActionDeleteable <|.. EditActivity
android.app.Activity <|-- LoginActivity
android.app.Activity <|-- SettingsActivity
android.app.Activity <|-- SingleTodoActivity
android.content.DialogInterface.OnClickListener <|.. SingleTodoActivity
android.app.Activity <|-- TodoListActivity
CreateActivity *-- com.utama.madtodo.fragments.CreateFragment
EditActivity *-- com.utama.madtodo.fragments.EditFragment
DetailsActivity *-- com.utama.madtodo.fragments.DetailsFragment
SettingsActivity *-- com.utama.madtodo.fragments.SettingsFragment
TodoListActivity *-- com.utama.madtodo.fragments.TodoListFragment
}
namespace com.utama.madtodo.fragments {
' -------------------------------------------------------------------------
' FRAGMENTS
' -------------------------------------------------------------------------
ViewUpdateable <|.. DetailsFragment
CreateFragment <|-- EditFragment
android.app.Fragment <|-- CreateFragment
android.app.Fragment <|-- DetailsFragment
android.preference.PreferenceFragment <|-- SettingsFragment
android.content.SharedPreferences.OnSharedPreferenceChangeListener <|.. SettingsFragment
android.widget.ArrayAdapter <|-- TodoListAdapter
android.app.ListFragment <|-- TodoListFragment
TodoListFragment *-- TodoListAdapter
}
namespace com.utama.madtodo.models {
' -------------------------------------------------------------------------
' MODELS
' -------------------------------------------------------------------------
android.database.sqlite.SQLiteOpenHelper <|-- DbHelper
TodoEntity <|-- LocalRemoteTodo
TodoEntity <|-- LocalTodo
TodoEntity <|-- RemoteTodo
LocalTodo o-- DbHelper
}
namespace com.utama.madtodo.tasks {
' -------------------------------------------------------------------------
' ASYNC TASKS
' -------------------------------------------------------------------------
android.os.AsyncTask <|-- AuthAsync
android.os.AsyncTask <|-- DeleteAsync
android.os.AsyncTask <|-- SaveAsync
android.os.AsyncTask <|-- SyncAsync
android.os.AsyncTask <|-- TestConnectionAsync
SaveAsync <|-- UpdateImportanceAsync
SaveAsync <|-- UpdateMarkedDoneAsync
com.utama.madtodo.tasks --o android.content.Context
' SyncAsync --o android.content.Context
' SaveAsync --o android.content.Context
' DeleteAsync --o android.content.Context
' AuthAsync --o android.content.Context
}
@enduml | false | true | false | false | class |
e40829a6619e4e0ab1768ffd16fa5fd69ff7679d | b1404325d74eb3b0b6639bebf69c914617ce673d | /diagrams/Tier1UseCase.puml | b15df2d7356d93676946987a611bdfc098cf5c80 | [
"MIT"
] | permissive | Zbot21/DocumentVisualization | 986f46a61d0fba49da8082ce718aaec6a3d5a17f | f8f432baa456794c012a0a65c24c47a32cabc0aa | refs/heads/master | 2021-01-01T05:19:44.581742 | 2016-04-27T15:42:49 | 2016-04-27T15:42:49 | 56,892,956 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 591 | puml | @startuml
left to right direction
skinparam packageStyle rect
actor User
rectangle TierOne {
(Search for papers) as Search
(Click on paper) as Click
(Marvel at pretty visualization) as Marvel
(Hover over paper) as Hover
(Launch Tier 2) as Launch
(Display search results) as Results
(Display additional information) as Info
User -- Search
Search -- Results
User -- Click
Click -- Launch
Click .> Results : include
User -- Marvel
Marvel .> Results : include
User -- Hover
Hover .> Results : include
Hover -- Info
}
@enduml | false | true | false | false | usecase |
faad20226870070246982a35c956d78df4e9253e | 49a4948b55aa5acee6f1559bc76413e7d0cf1293 | /assets/0017-SequenceDiagram-ExecutionPhase.puml | aab3d9a93ce5bf9e480e05dbd9eed33ffbb8d1cd | [] | no_license | comit-network/spikes | af9515d83e2384c32dc914e5c988dae088110625 | c9fd3548464dbfade838a8aea6a2c4ea87cae9fc | refs/heads/master | 2021-07-07T18:58:36.533143 | 2020-08-24T04:55:33 | 2020-08-24T04:55:33 | 173,885,928 | 2 | 0 | null | 2020-08-24T04:55:34 | 2019-03-05T06:12:27 | null | UTF-8 | PlantUML | false | false | 2,965 | puml | ' DIAGRAM #########################################
' Execution phase messaging
' #################################################
@startuml
' #################################################
' SETTINGS: color settings of diagram
' #################################################
skinparam sequence {
BorderColor black
ArrowColor black
ActorBorderColor black
LifeLineBorderColor black
LifeLineBackgroundColor white
ParticipantBorderColor black
ParticipantBackgroundColor white
ParticipantFontColor black
ActorBackgroundColor white
ActorFontColor black
}
' #################################################
' ACTORS
' #################################################
participant "Bob\ncnd" as BC
actor Maker as M
actor Taker as T
participant "Alice\ncnd" as AC
' allow parallelism
!pragma teoz true
' #################################################
' DIAGRAM
' #################################################
group execution phase
T->AC: create swap
note right #white
required:
- connect-info
- swap id
- alpha_ledger.name = ask-ledger
- alpha_asset.name = ask-asset
- alpha_asset.quantity = ask-amount
- beta_ledger.name = bid-ledger
- beta_asset.name = bid-asset
- beta_asset.quantity = bid-amount
- role = Alice
optional:
- expiries
- identities
end note
& M->BC: create swap
note left #white
required:
- swap id
- alpha_ledger.name = ask-ledger
- alpha_asset.name = ask-asset
- alpha_asset.quantity = ask-amount
- beta_ledger.name = bid-ledger
- beta_asset.name = bid-asset
- beta_asset.quantity = bid-amount
- role = Bob
optional:
- expiries
- identities
end note
AC->AC: default to rfc003 protocol
& BC->BC: default to rfc003 protocol
opt
AC->AC: default expiries
note right #white
if expiries not given
end note
end
& opt
BC->BC: default expiries
note left #white
if expiries not given
end note
end
opt
AC->AC: identities from transient key
note right #white
if identities not given
end note
end
& opt
BC->BC: identities from transient key
note left #white
if identities not given
end note
end
AC->AC: generate secret
AC->BC: these are all the parameters I have, do they match yours? [all params, including hash(secret)]
BC->BC: add hash(secret) to params
BC->BC: compare all params
alt
BC->AC: yes, parameters match, here are my identities [identities]
else matching fails
BC->AC: \nparam X did not match
AC->T: there is a problem
end
AC->T: Fund transaction
& BC->BC: Monitor alpha ledger
group go on with execution (as defined in rfc003)
end
end
@enduml
| false | true | false | false | usecase |
11f76ea3434b052d30b4155f460ff2b9f8b0fd43 | 9cc33ded0625b3fc1698ae2fa27ff0b6211a7252 | /Lab submits/60030041/puml/Puppy.puml | eb5c29eb96fe8c09a751698377ee79fc98eb4112 | [] | no_license | OOAD-041/OOAD-WEEK05 | ea7ca4f54ed1b03233ffd047802d79eee67b8d2a | fecdb3b8311a8014b9e6ea4647c97936eab9b6d1 | refs/heads/master | 2021-01-16T01:22:49.419431 | 2020-03-31T10:00:38 | 2020-03-31T10:00:38 | 242,923,974 | 0 | 0 | null | 2020-02-25T06:08:39 | 2020-02-25T06:08:38 | null | UTF-8 | PlantUML | false | false | 81 | puml | @startuml
Class Pupply
{
void Eat()
void Bark()
void Wepp()
}
@enduml | false | true | false | false | class |
339398f77a66bfbb77811849dc30e9b00b7ded48 | 3662b2e08ec5aef2e3dfd1e527b5e50f44d91e1c | /docs/diagrams/CapCommandSequenceDiagram.puml | 5ee0998c9768d33c2ac09b1e1295312d76058dc2 | [] | no_license | AY2021S2-CS2113T-W09-2/tp | 0585f03b1390bf9385a5caef22f00aa599b18d13 | 7d4443d633ae380505f7a69687cc34ab71e0a06b | refs/heads/master | 2023-04-17T11:33:49.033344 | 2021-04-16T02:46:37 | 2021-04-16T02:46:37 | 343,961,010 | 0 | 5 | null | 2021-04-16T02:46:37 | 2021-03-03T01:14:38 | Java | UTF-8 | PlantUML | false | false | 1,387 | puml | @startuml
hide footbox
participant ":iGraduate" as iGraduate
participant ":Parser" as Parser
participant ":CapCommand" as CapCommand
participant ":ModuleList" as ModuleList
participant ":Ui" as Ui
iGraduate -> Parser: parseCommand("cap")
activate Parser #FFBBBB
Parser -> Parser: createCapCommand(commandParameters:ArrayList<String>, commandFlags:ArrayList<String>)
activate Parser #DarkSalmon
create CapCommand
Parser -> CapCommand: CapCommand()
activate CapCommand
CapCommand --> Parser: new CapCommand()
deactivate CapCommand
Parser --> iGraduate: new CapCommand()
deactivate Parser
iGraduate -> CapCommand: execute(moduleList, ui, storage)
activate CapCommand
CapCommand -> ModuleList: getModules().get()
activate ModuleList
ModuleList --> CapCommand: module: Module
deactivate ModuleList
CapCommand -> CapCommand:checkSu(module: Module)
activate CapCommand #DarkSalmon
return su: boolean
CapCommand -> CapCommand:convertGradeToCap(grade String)
activate CapCommand #DarkSalmon
return moduleCap: float
CapCommand -> CapCommand:caculateCap(totalCredit: double, totalModuleCap: float)
activate CapCommand #DarkSalmon
return cap: float
CapCommand -> CapCommand:getDegreeClassification(cap: float)
activate CapCommand #DarkSalmon
return capClass: String
CapCommand -> Ui: printCap(cap: Float, degreeClassification String)
activate Ui
deactivate Ui
destroy CapCommand
@enduml | false | true | false | false | sequence |
afad0ddc51d1fd388ad067b06096c9f658927b41 | 83bec850817e3deb2a33a5ab2527784a976338b3 | /log210-contenu/S20213/assets/ControleurGRASP_simple.puml | 173825e0a28b6c986b43247a792cca7ce3b4403e | [] | no_license | yvanross/github-action-learning-larman-mdd | df8fb1907a84046ce0ed3b62ea555fd3b12655ad | e0195b3344ecdfaa934e788e839e8758453bc4ca | refs/heads/main | 2023-08-30T10:22:28.071260 | 2021-11-11T15:29:27 | 2021-11-11T15:29:27 | 304,116,705 | 0 | 0 | null | 2020-10-15T01:32:37 | 2020-10-14T19:34:03 | JavaScript | UTF-8 | PlantUML | false | false | 1,043 | puml | @startuml
skinparam style strictuml
skinparam backgroundcolor transparent
skinparam SequenceBoxBorderColor transparent
skinparam participantpadding 10
'skinparam handwritten true
skinparam sequenceMessageAlign center
actor ":Joueur" as j
box "Couche présentation\n(Navigateur + une partie du Serveur)" #ddffdd
participant ":Button" as b <<NavigateurWeb>>
participant ":JeuRouteur" as r <<NodeExpress>>
end box
box "Couche domaine" #ddddff
participant ":JeuDeDés" as c <<ContrôleurGRASP>>
participant "..." as s
end box
j -> b : cliquer
'note over r : Class du serveur web
b ->> r : REST niveau 1\nHTTP GET /api/v1/demarrerJeu/Cris
r ->> r : demarrerJeu\n(req, res)
note right
Express
//router handler//
end note
skinparam NoteTextAlignment center
note over r, c
L'<color blue>**opération système**</color> est envoyée
à un //objet du domaine// (le contrôleur GRASP)
end note
r -[#blue,bold]> c : <color blue><size 20>**demarrerJeu**\n<color blue><size 20>**(nom:String)**</color>
c -> s : ...
note over c, s : Selon la RDCU...
@enduml | false | true | true | false | usecase |
65cf838d8234edb8da2d9f7d0d3481ea66bf3a83 | eb79b5e41b205bca757ecb47616d107d0c78e13d | /design_patterns/creational/builder/2. builder_pattern_car.puml | af8c6e5ca608db8326e46c02413e6358da9f3193 | [] | no_license | kevinwong1983/exploration | 6023bb1c903c316794b132b1bff4ef817fe55f5d | 20029c025c7ae44e0dba535a6ec47b065b19f65b | refs/heads/master | 2022-06-09T09:48:26.087800 | 2022-06-05T22:29:47 | 2022-06-05T22:29:47 | 207,248,735 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 569 | puml | @startuml
skinparam monochrome true
class Director {
construct()
}
interface CarBuilder {
withDoors(int doors)
withMotor(string motor)
withColor(string color)
build()
}
class ElectricCarBuilder {
}
Director -l-o CarBuilder
CarBuilder <|-r- ElectricCarBuilder
class Car {
-int doors
-string color
-string motor
}
note left of Car
All private member
variables that are
only accessable through
the builder.
end note
class Tesla {
doCoolStuff()
}
CarBuilder .. Car
Car <|-r- Tesla
ElectricCarBuilder .. Tesla
@enduml | false | true | false | false | class |
a03f4501ae24cdd85c5ee3762a5dce5f224d5e36 | 2733e9340195c6bcd927034ca398b0467c862c7f | /Generator/pipeline.puml | 3642a398c69d4ff884ba0a21ace5a7b33c710db6 | [] | no_license | adrian-helberg/bachelor | 0026c51b9feb31ba3dc0dafdcd68a30cbd492509 | d5261079a68bbc7c72c11ef93ff1e4f0241e5c51 | refs/heads/master | 2021-07-09T02:59:34.394076 | 2021-03-28T12:52:49 | 2021-03-28T12:52:49 | 237,755,354 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 187 | puml | @startuml
class de.haw.pipeline.Pipeline {
- Pipe<IN,OUT> current
+ Pipeline<IN,NewO> pipe(Pipe<OUT,NewO>)
+ OUT execute(IN)
}
interface de.haw.pipeline.Pipe {
~ OUT process(IN)
}
@enduml | false | true | false | false | class |
70f2fc44334e52ebce4166c17bb5d5aa9b79b906 | c542ea868d12a49033e713a9358a22aa55cfc7a9 | /src/adapter_pattern/class_adapter/classAdapter.puml | ebd58a65b5c98fc1dfbff79a25bc2ec0c7993be5 | [] | no_license | elm-suf/GofDesignPatterns | a023dc223ea7f88a1ab4b90ee7d6e546cb5710fe | 38429ed9eac99bf89e7cb0edcd595d22d5bd80b0 | refs/heads/master | 2020-06-02T12:49:11.905888 | 2019-06-11T15:12:55 | 2019-06-11T15:12:55 | 191,158,892 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 329 | puml | @startuml
title Class Adapter Pattern
class Client
interface ITarget{
operation() : void
}
Class Adapter{
+ operation() : void
}
note top of Adapter: operation( ){\n\tthis.specificOperation()\n}
Class Adaptee{
+ specificOperation() : void
}
Adapter ...|> ITarget
Adapter ---|> Adaptee
Client ---> ITarget
@enduml | false | true | false | false | class |
0e0ced93a3c14495f59eb3cd92e647ef4d614c61 | 981bf6a7ce9a0a7a45f3af8ac26a9f8b9fc26b70 | /source/dubbo-dubbo-2.6.5/dubbo-config/dubbo-config-spring/src/main/java/com/alibaba/dubbo/config/spring/lock.puml | f48a55467222e16180e49adfda86464f14f5467a | [
"Apache-2.0"
] | permissive | litter-fish/ReadSource | f0dab8c757b5647c1b2c4b4b9edb4d45502cb6bc | fa93b54e203bc5e630d89bae0f6ad175d39fe71f | refs/heads/master | 2022-12-20T17:17:08.081908 | 2020-01-20T14:09:06 | 2020-01-20T14:09:06 | 227,380,506 | 1 | 2 | null | 2022-12-10T05:39:57 | 2019-12-11T14:07:11 | Java | UTF-8 | PlantUML | false | false | 759 | puml | @startuml
interface Lock
interface Condition
interface ReadWriteLock
abstract class AbstractQueuedSynchronizer
abstract class AbstractOwnableSynchronizer
AbstractOwnableSynchronizer<|--AbstractQueuedSynchronizer
AbstractQueuedSynchronizer ...> LockSupport
AbstractQueuedSynchronizer ...> Condition
ReentrantLock <|-- NonfairSync
ReentrantLock <|-- FairSync
ReentrantLock--|>Lock
ReentrantLock...>AbstractQueuedSynchronizer
ReentrantReadWriteLock --|> ReadWriteLock
ReentrantReadWriteLock ..> ReadLock
ReadLock ...> AbstractQueuedSynchronizer
ReentrantReadWriteLock ...> WriteLock
WriteLock ...> AbstractQueuedSynchronizer
Semaphore ..> AbstractQueuedSynchronizer
CountDownLatch ..> AbstractQueuedSynchronizer
CyclicBarrier <.. ReentrantLock
@enduml | false | true | false | false | class |
157e721cc02fc237dc6a1680fdc3ef7e69a35794 | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/kepala/VIewFileDisposisiBKA.puml | 9c160e635fecc1663934c3083bf915964182022d | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 890 | puml | @startuml
autonumber
hide footbox
title Melihat File Disposisi BKA
Actor Kepala
boundary Dashboard_V
boundary DisposisiBKA_V
boundary PDF_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 Lihat File Disposisi BKA
DisposisiBKA_V --> SuratDisposisi_C: viewdisposisimail()
SuratDisposisi_C --> SuratDisposisi_E:
SuratDisposisi_E --> SuratDisposisi_C:
SuratDisposisi_C --> PDF_V: load->view()
PDF_V --> Kepala: Tampilan file Disposisi BKA
@enduml | false | true | false | false | sequence |
8f9144460c90e2f01cbd4fd13a0fcf5fbb4dc4aa | dc1ce0dda5d7b14289011eb99ff9adaffa6f3081 | /src/docs/diagrams/06_SD_UploadRoute.puml | 49b71dc331379701dc2fde828f75dafa294a39f7 | [
"MIT"
] | permissive | lamasumas/viade_en1b | 0d73151b9339d905f770f38c2bfd7e642dfc37bf | ce7d7b5fc0e8a1cbb9397bb186a619c9f231d99d | refs/heads/master | 2022-06-10T10:25:10.208525 | 2020-05-05T11:19:20 | 2020-05-05T11:19:20 | 261,439,261 | 0 | 0 | MIT | 2020-05-05T11:12:48 | 2020-05-05T11:12:47 | null | UTF-8 | PlantUML | false | false | 911 | puml | title Load routes - Sequence Diagram
@startuml
actor User as u
participant UploadRoute as ur
participant GPXParser as gpx
participant ReduxStore as rs
participant RouteActions as ra
participant RouteReducer as rr
participant solid.js as s
participant parser.js as p
database POD as pod
activate u
u -> ur: enters UploadRoute view
activate ur
ur -> ur: fills in data about route
ur -> gpx: parseFile(file)
activate gpx
gpx --> ur: positions
destroy gpx
ur -> rs: uploadRoute(userWebId, route)
activate rs
rs -> ra: dispactch(uploadRoute(userWebId, route))
activate ra
ra -> rr: uploadRoute(userWebId, route)
destroy ra
activate rr
rr -> s: uploadRouteToPod(userWebId, route)
activate s
s -> p: getFormattedRoute(route)
activate p
p --> s: route in jsonld
destroy p
s -> pod: write route
destroy s
rr --> rs: new state
destroy rr
destroy rs
legend right
line = method
dash line = data
endlegend
@enduml
| false | true | false | false | usecase |
63017a389b3d886e997fc9c007dd3ef3292053d4 | 02b0d37dad8182bfbc5414bbd250f36c6e888b28 | /PlantUml/Scripts/Design Patterns/Factory/Food/FoodFactoryPattern.puml | b267528a3771d7afb7077206fefeedfe673e5ec2 | [] | no_license | Darcy97/U3D_Libs | ee8b1afb4e4cdc99fd80ab404fc8171cf2181ca0 | cc6143112916cafa346a00bc1fab7841b7888444 | refs/heads/master | 2020-06-21T16:37:56.155301 | 2019-08-20T07:04:09 | 2019-08-20T07:04:09 | 197,504,293 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 235 | puml | @startuml
class FoodFactoryPattern {
- Awake() : void
- OnTButtonClick() : void
- OnSButtonClick() : void
- OnDButtonClick() : void
- CookFood(type:FoodType) : void
}
PatternMonoBase <|-- FoodFactoryPattern
@enduml
| false | true | false | false | class |
67e0674bab9e534fdefc4052856683b7b3f4bf53 | 1423267c7da79f77fdec74f3d6c68f173a7d8326 | /Design/SE/SensorController/Software/Klasser/CentralComputerIF/centralComputerSend.puml | 9475abc24f2897883391e2fea414573f7f7646c3 | [] | no_license | Solvgraa-mager/E4PRJ4 | 60282c6857f62747ce99aacacab8f7b56efbf28e | 3f54f0415dcb1f5f7269db9653860f4071a17082 | refs/heads/main | 2023-05-08T15:53:25.639820 | 2021-06-03T12:47:11 | 2021-06-03T12:47:11 | 335,742,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 454 | puml | @startuml CentralComputerIFSendSekvens
title void CentralComputer::send(int16 value)
participant SensorController as SC
participant CentralComputerIF as CCIF
actor "Central Computer" as CC #red
SC -> CCIF : send(bool valid, int16 value)
CCIF -> CC : MSB: SendChar(value >> 8)
CCIF -> CC : LSB: SendChar(value & 0xFF)
CCIF -> CC : Kontrol: SendChar(valid ? 0xFF : 0x00)
CCIF -> CC : Checksum: SendChar((value+request) & 0xFF)
CCIF --> SC :
@enduml | false | true | false | false | usecase |
a69983561b7b8387ccaa7dd0bece043e58bfc5c8 | 216da320d6c17aa62031553ea14c889c31cdc81a | /draft/20170201/class_diagram01.puml | 31544c9c6152417e35fb57cbcb2583a4b9c0e397 | [] | no_license | k2works/slides | 9eda77072436a321fd0059645d2e0a2e9b1e45f8 | 324c404adb59fb630d5280dc7ea8552578f4ddb3 | refs/heads/gh-pages | 2021-01-22T18:51:08.255670 | 2017-03-21T23:56:46 | 2017-03-21T23:56:46 | 59,255,593 | 0 | 0 | null | 2017-03-03T03:12:30 | 2016-05-20T01:36:07 | CSS | UTF-8 | PlantUML | false | false | 97 | puml | @startuml
class Game
class Frame
class Throw
Game --> "10" Frame
Frame --> "1..3" Throw
@enduml | false | true | false | false | class |
50eeb144e7b375e1b5f18f2592f44a99794d1311 | 31c29c4e1855d0507d405f1eda93b12ed5605022 | /designpatterncomponent/src/main/java/com/bilibili/designpatterncomponent/observer/uml/observer.puml | 7921e9773d4585990a55641daf16a1d7b54fb2a2 | [
"Apache-2.0"
] | permissive | Chihiro23333/ChidoriX | 547ab6a1c46de0c61d8cd61af154e01b4f23dac8 | 7e57171085f4230611cd51db594d3fc619a02603 | refs/heads/master | 2022-06-13T14:52:49.084013 | 2022-05-13T10:03:01 | 2022-05-13T10:03:01 | 138,551,185 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 612 | puml | @startuml
interface Subject
interface Observer
class Weather
class WeatherBoard
class OtherBoard
Subject : +registeObserver(Observer o)
Subject : +removeObserver(Observer o)
Subject : +notifyObservers()
Weather : -String temperature
Weather : -List<Observer> observers
Weather : +registeObserver(Observer o)
Weather : +removeObserver(Observer o)
Weather : +notifyObservers()
Observer : +update(String temperature)
WeatherBoard : +update(String temperature)
OtherBoard : +update(String temperature)
Subject <|-Weather
Observer <|..WeatherBoard
Observer <|..OtherBoard
Subject "1" o-- "many"Observer
@enduml | false | true | false | false | class |
7cdff22d9c9488f6024e53cd1380ab0ebe844493 | 3f5334019e291af01a0068af7e265d3682cd6ced | /docs/output/out/default.puml | 22f59fd06a3bbea1e266049624926c1e2c895220 | [
"Apache-2.0"
] | permissive | arnoldmd181/ScalaUml | 53df85de2435c0f829b946a9a577573e1cacf1ef | c919e1daec7544ef37ddfa4102d3efe25ee05dab | refs/heads/master | 2023-08-11T07:18:41.400180 | 2021-09-20T18:51:02 | 2021-09-20T18:51:02 | 408,312,092 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 531 | puml | @startuml need_to_find_id
package animals{
class animals.Wombat << caseclass >>{
<< ctor >>Wombat (location : String)
-- <<scalaclass>> --
isSealed
}
abstract class animals.Animal << trait >>{
location : String
}
}
package animals::extension{
class animals::extension.Olm << caseclass >>{
<< ctor >>Olm (location : String)
-- <<scalaclass>> --
isSealed
}
}
animals.Animal <|-- animals::extension.Olm
animals.Animal <|-- animals.Wombat
@enduml | false | true | false | false | class |
f6628a5a8734ca43181b5979e6c9d227d5317ad2 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CustomerPasswordUpdatedMessage.puml | c0bfdae18cd896815ffbb686e728979c5bda4319 | [] | 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,160 | 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 CustomerPasswordUpdatedMessage [[CustomerPasswordUpdatedMessage.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]]
reset: Boolean
}
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 |
60096e460b77d9d6baf3cbb034abcc16f06e2099 | 644b7bb773b84596a2de4d31a0603284d9562e56 | /react/bootstrap/formcontrol.iuml | 57505f0eb35a8e30d2b0deb752389f0362260683 | [] | no_license | M9k/Marvin-Uml | e62d17245cf493d53f0b80f633a47be8ec44569e | 0fe9bc36f947535ae4397181ccf8c85291244a87 | refs/heads/master | 2021-04-15T17:44:22.461549 | 2018-05-10T07:52:19 | 2018-05-10T07:52:19 | 126,618,685 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 171 | iuml | class FormControl{
--props--
type : string
inputRef : function
--render--
render a a form control
with Bootstrap styling
} | false | true | false | false | class |
726ec6eea5b688434722567a9eb0b6d5abf33a30 | 6269112c0429b548f644fcf0a7f9d19e291fd169 | /app/app.plantuml | d90791fae374236083a6ed779ea32f265f42cd26 | [] | no_license | JoelingM/CP470_Group_Project | 949c5d3824e36d4daf5cac33b794fa43e5d0fb1d | bfb3b36736472fc59eff492bf695aad620092756 | refs/heads/master | 2023-03-15T01:29:46.961062 | 2021-03-19T21:38:16 | 2021-03-19T21:38:16 | 349,560,996 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 10,592 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.group.project {
class com.group.project.BuildConfig {
}
}
namespace com.group.project {
class com.group.project.CalculatorActivity {
}
}
namespace com.group.project {
class com.group.project.CalculatorEquationsActivity {
}
}
namespace com.group.project {
class com.group.project.CalculatorKeypadActivity {
}
}
namespace com.group.project {
class com.group.project.CalculatorVarpadActivity {
}
}
namespace com.group.project {
class com.group.project.CalenderActivity {
}
}
namespace com.group.project {
class com.group.project.Contact {
}
}
namespace com.group.project {
class com.group.project.ContactActivity {
}
}
namespace com.group.project {
class com.group.project.ContactDetailActivity {
}
}
namespace com.group.project {
class com.group.project.ContactDetailFragment {
}
}
namespace com.group.project {
class com.group.project.ContactEditActivity {
}
}
namespace com.group.project {
class com.group.project.ContactSQLHelper {
}
}
namespace com.group.project {
class com.group.project.CreateClass {
}
}
namespace com.group.project {
class com.group.project.CreateEvent {
}
}
namespace com.group.project {
class com.group.project.EventList {
}
}
namespace com.group.project {
class com.group.project.MainActivity {
}
}
namespace com.group.project {
class com.group.project.NotepadEditActivity {
}
}
namespace com.group.project {
class com.group.project.NotepadMainActivity {
}
}
namespace com.group.project {
class com.group.project.NotificationReceiver {
}
}
namespace com.group.project {
class com.group.project.NotificationScheduler {
}
}
namespace com.group.project {
class com.group.project.addFood {
}
}
namespace com.group.project {
class com.group.project.aeCalenderDatabaseHelper {
}
}
namespace com.group.project {
class com.group.project.aeClass {
}
}
namespace com.group.project {
class com.group.project.aeClassAdapter {
}
}
namespace com.group.project {
class com.group.project.aeEvent {
}
}
namespace com.group.project {
class com.group.project.aeEventAdapter {
}
}
namespace com.group.project {
class com.group.project.foodDatabaseHelper {
}
}
namespace com.group.project {
class com.group.project.foodFragment {
}
}
namespace com.group.project {
class com.group.project.food_details {
}
}
namespace com.group.project {
class com.group.project.food_list {
}
}
namespace com.group.project {
class com.group.project.main_ab {
}
}
namespace com.group.project {
namespace noteAdapters {
class com.group.project.noteAdapters.NotesAdapter {
}
}
}
namespace com.group.project {
namespace noteDB {
class com.group.project.noteDB.NoteDatabaseHelper {
}
}
}
namespace com.group.project {
namespace noteModel {
class com.group.project.noteModel.Note {
}
}
}
namespace com.group.project {
namespace noteUtility {
interface com.group.project.noteUtility.NoteEventListener {
}
}
}
namespace com.group.project {
namespace noteUtility {
class com.group.project.noteUtility.NoteUtilities {
}
}
}
namespace com.group.project {
namespace noteUtility {
class com.group.project.noteUtility.NotesViewFragment {
}
}
}
namespace com.group.project {
namespace ui.calender {
class com.group.project.ui.calender.HomeFragment {
}
}
}
namespace com.group.project {
namespace ui.classes {
class com.group.project.ui.classes.ClassFragment {
}
}
}
namespace com.group.project {
namespace ui.dummy {
class com.group.project.ui.dummy.DummyContent {
}
}
}
namespace com.group.project {
namespace ui.reminders {
class com.group.project.ui.reminders.EventsFragment {
}
}
}
namespace com.group.project {
namespace ui.settings {
class com.group.project.ui.settings.SettingsFragment {
}
}
}
namespace com.group.project {
class com.group.project.weightActivities {
}
}
namespace com.group.project {
class com.group.project.weight_Goals {
}
}
com.group.project.CalculatorActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.CalculatorEquationsActivity -up-|> androidx.fragment.app.Fragment
com.group.project.CalculatorEquationsActivity o-- com.group.project.CalculatorActivity : CA
com.group.project.CalculatorEquationsActivity o-- com.group.project.CalculatorEquationsActivity.equationAdapter : eqAdapter
com.group.project.CalculatorKeypadActivity -up-|> androidx.fragment.app.Fragment
com.group.project.CalculatorKeypadActivity o-- com.group.project.CalculatorActivity : CA
com.group.project.CalculatorVarpadActivity -up-|> androidx.fragment.app.Fragment
com.group.project.CalculatorVarpadActivity o-- com.group.project.CalculatorActivity : CA
com.group.project.CalenderActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.Contact .up.|> android.os.Parcelable
com.group.project.Contact .up.|> java.lang.Comparable
com.group.project.ContactActivity .up.|> com.group.project.ContactDetailFragment.ContactDetailFragmentRemovedListener
com.group.project.ContactActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.ContactActivity o-- com.group.project.ContactDetailFragment : cdf
com.group.project.ContactActivity o-- com.group.project.ContactActivity.ContactAdapter : contactAdapter
com.group.project.ContactDetailActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.ContactDetailActivity o-- com.group.project.ContactDetailFragment : cdf
com.group.project.ContactDetailActivity o-- com.group.project.Contact : contact
com.group.project.ContactDetailFragment -up-|> androidx.fragment.app.Fragment
com.group.project.ContactDetailFragment o-- com.group.project.Contact : contact
com.group.project.ContactDetailFragment o-- com.group.project.ContactDetailFragment.NumberAdapter : numberAdapter
com.group.project.ContactEditActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.ContactEditActivity o-- com.group.project.Contact : contact
com.group.project.ContactEditActivity o-- com.group.project.ContactEditActivity.EditNumberAdapter : editNumberAdapter
com.group.project.ContactSQLHelper -up-|> android.database.sqlite.SQLiteOpenHelper
com.group.project.CreateClass -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.CreateEvent -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.CreateEvent o-- com.group.project.aeEvent : event
com.group.project.EventList -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.NotepadEditActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.NotepadEditActivity o-- com.group.project.noteModel.Note : temp
com.group.project.NotepadMainActivity .up.|> com.group.project.noteUtility.NoteEventListener
com.group.project.NotepadMainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.NotepadMainActivity o-- com.group.project.noteAdapters.NotesAdapter : adapter
com.group.project.NotificationReceiver -up-|> android.content.BroadcastReceiver
com.group.project.addFood -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.aeCalenderDatabaseHelper -up-|> android.database.sqlite.SQLiteOpenHelper
com.group.project.aeClass .up.|> android.os.Parcelable
com.group.project.aeClassAdapter -up-|> android.widget.ArrayAdapter
com.group.project.aeEvent .up.|> android.os.Parcelable
com.group.project.aeEventAdapter -up-|> android.widget.ArrayAdapter
com.group.project.foodDatabaseHelper -up-|> android.database.sqlite.SQLiteOpenHelper
com.group.project.foodFragment -up-|> androidx.fragment.app.Fragment
com.group.project.foodFragment o-- com.group.project.food_list : fl
com.group.project.food_details -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.food_list -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.food_list o-- com.group.project.food_list.FoodAdapter : fdAdapter
com.group.project.food_list o-- com.group.project.foodDatabaseHelper : helper
com.group.project.main_ab -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.noteAdapters.NotesAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.group.project.noteAdapters.NotesAdapter o-- com.group.project.noteUtility.NoteEventListener : listener
com.group.project.noteDB.NoteDatabaseHelper -up-|> android.database.sqlite.SQLiteOpenHelper
com.group.project.noteUtility.NotesViewFragment -up-|> androidx.fragment.app.Fragment
com.group.project.ui.calender.HomeFragment .up.|> com.group.project.aeCalenderDatabaseHelper.ExecGetEvents.AsyncResponseEvent
com.group.project.ui.calender.HomeFragment -up-|> androidx.fragment.app.Fragment
com.group.project.ui.calender.HomeFragment o-- com.group.project.aeEventAdapter : ea
com.group.project.ui.classes.ClassFragment .up.|> com.group.project.aeCalenderDatabaseHelper.ExecGetClasses.AsyncResponseClass
com.group.project.ui.classes.ClassFragment -up-|> androidx.fragment.app.Fragment
com.group.project.ui.classes.ClassFragment o-- com.group.project.aeClassAdapter : ca
com.group.project.ui.reminders.EventsFragment .up.|> com.group.project.aeCalenderDatabaseHelper.ExecGetEvents.AsyncResponseEvent
com.group.project.ui.reminders.EventsFragment -up-|> androidx.fragment.app.Fragment
com.group.project.ui.reminders.EventsFragment o-- com.group.project.aeEventAdapter : ea
com.group.project.ui.settings.SettingsFragment -up-|> androidx.fragment.app.Fragment
com.group.project.weightActivities -up-|> androidx.appcompat.app.AppCompatActivity
com.group.project.weight_Goals -up-|> androidx.appcompat.app.AppCompatActivity
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 |
2433123e0076f26e87efe28da89045089a0679a8 | 7f2c3c7279d02ef9a0f540cb3f5465ec150fc274 | /Part2/documentation/Diagrams PUML/UCSchool.puml | 9f5285bb83860ba626e5a24dabbc5f610a913001 | [] | no_license | UpSkillCobol/lab2 | 50af33d8a3dc2de7d582439bae1d0a2b0661af85 | 0bd40727e16972be0188d9b98865d92752226811 | refs/heads/main | 2023-04-05T14:51:59.017317 | 2021-03-25T16:42:50 | 2021-03-25T16:42:50 | 325,392,334 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 376 | puml | @startuml
left to right direction
header
UPskillCobol: Breadwich
endheader
title \nDeliciousSandwich\n
package School {
usecase "UC1: Add school interactively" as UC1
usecase "UC2: Add schools from file" as UC2
usecase "UC3: Modify schools interactively" as UC3
usecase "UC4: View schools" as UC4
}
Admin --> UC1
Admin --> UC2
Admin --> UC3
Admin --> UC4
@enduml | false | true | false | false | usecase |
4f9ef4cdb53ec8c50ef09cf3f118940ea523b9d7 | b2c18c815bdb94f110b0438856bb6fbdf336849b | /Diagrama.plantuml | 4841a1012d6e61ba4fc43a91cf5976de0d31156f | [] | no_license | Tomas83/QueMePongo | 89b88af826896bed53aadda7f41b7d7ab7322bc5 | 91dbfdbd96b4e67ee3d347c78722f4da26a9aaa9 | refs/heads/main | 2023-05-13T20:37:22.314769 | 2021-06-09T21:12:34 | 2021-06-09T21:12:34 | 367,996,192 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,991 | plantuml |
@startuml
package Usuarios <<Frame>> #DDFF33
{
RepositorioUsuario ->"*" Usuario
class Usuario
{
+proponerPrenda(Usuario,GuardaRopa,Prenda): void
+proponerQuitarPrenda(Usuario,GuardaRopa,Prenda): void
+generarTodasSugerenciasPosibles(WeatherApiStrategy,int):List<Atuendo>
+actualizarSugerenciaDelDia(List<Atuendo>): void
-checkPropuesta(DeclaracionDePropuesta): boolean
+aceptarPropuesta(DeclaracionDePropuesta): void
+rechazarPropuesta(DeclaracionDePropuesta): void
+revertirPropuesta(DeclaracionDePropuesta): void
+recibirPropuesta(DeclaracionDePropuesta): void
}
class RepositorioUsuario << (S,#FF7700) Singleton >>
{
+addUsuario(Usuario): void
+ActualizarSugerenciasDeUsuarios(WeatherApiStrategy,int): void
}
}
package Propuestas <<Frame>> #FFBB22
{
Propuesta-u[hidden]>Usuario
Usuario-d[hidden]>Propuesta
Usuario-d[hidden]>DeclaracionDePropuesta
Usuario->"*"DeclaracionDePropuesta
Usuario->"*"DeclaracionDePropuesta
interface Propuesta
{
+aceptarPropuesta(GuardaRopa): void
+revertirPropuesta(GuardaRopa): void
}
class AgregarPrenda implements Propuesta
class RemoverPrenda implements Propuesta
class DeclaracionDePropuesta
{
+aceptarPropuesta(): void
+rechazarPropuesta(): void
+revertirPropuesta(): void
}
}
package Api <<Frame>> #DDDDDD
{
AccuWeatherHandler ..l|>WeatherApiStrategy
Interface WeatherApiStrategy
{
+getTemp(): float
+getCondicionesClimaticas(): List<String>
}
class AccuWeatherHandler << (S,#FF7700) Singleton >>
{
+getTemp():float
-fahrenheitToCelsius(): float
+getCondicionesClimaticas(): List<String>
}
}
package Prendas <<Frame>> #33DDFF
{
Usuario->"*"GuardaRopa
Usuario->"*"Atuendo
AgregarPrenda->"*" Prenda
RemoverPrenda->"*" Prenda
DeclaracionDePropuesta -> GuardaRopa
DeclaracionDePropuesta -> Propuesta
package Atuendo <<Frame>> #DDDDDD
{
class Atuendo
{
-checkearPrendas(List<Prenda>)
-chequearCantidadDePrenda(List<Prenda>)
}
}
Atuendo->"*"Prenda
package Material <<Frame>> #DDDDDD
{
Material -u>Trama
Material -d->TipoDeMaterial
class Material{}
Enum TipoDeMaterial
{
ALGODON,
LANA,
SEDA
}
Enum Trama
{
CUADROS,
LISO,
RAYADO
}
}
class Prenda
{
- temperaturaIdeal: Int
+ hayColorSecundario(): boolean
}
Prenda-u>Color
Prenda-u>Color
Prenda->Material
Prenda->TipoDePrenda
class PrendaBuilder
{
- temperaturaIdeal: Int
- climasApropiados : List<String>
+ build(): Prenda
}
PrendaBuilder -[dashed]->Prenda
PrendaBuilder-r>Color
PrendaBuilder-r>Color
PrendaBuilder->Material
PrendaBuilder-l>TipoDePrenda
class GuardaRopa
{
+generate(int,int):List<Int[]>
+getMultiplesPrendasDeLista(List<Prenda>,int[]):List<Prenda>
+getPrendasATemperatura(List<Prenda>,int int): List<Prenda>
+getPrendasParaClima(List<Prenda>,int int): List<Prenda>
-helper(List<init[]>,int[],int,int): void
+sugerencias(List<Prenda>): List<Atuendo>
+sugerencias(List<Prenda>,int,int): List<Atuendo>
+sugerencias(List<Prenda>,WeatherApiStrategy): List<Atuendo>
+sugerencias(WeatherApiStrategy,int): List<Atuendo>
}
GuardaRopa..>Prenda
GuardaRopa..>Atuendo
Enum Color
{
AZUL,
VERDE,
AMARILLO,
ROJO,
MORADO,
ROSA,
NEGRO,
BLANCO,
CELSETE,
NARANJA
}
Enum TipoDePrenda
{
PARTE_SUPERIOR,
PARTE_INFERIOR,
CALZADO,
ACCESORIO
}
}
@endrtuml
| false | true | false | false | class |
8fb4ddafa62f5ba7d77bb0e40ce4fd2eafed4e85 | c8002de729ea7f503a29ce37bf98e9d53a54b786 | /Repository/include.puml | 335dc1a76279ed22914027500a5f6826e0f742f5 | [] | no_license | RostilKant/InventoryManagement | bb1fb4e890cb389944f8a890f67acba5b6c1e32b | c21c670b6388026a03e461f577396a8f573d4c65 | refs/heads/master | 2023-06-01T15:50:49.141521 | 2021-06-17T07:21:23 | 2021-06-17T07:21:23 | 341,509,343 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,170 | puml | @startuml
class AccessoryRepository {
}
"RepositoryBase`1" "<Accessory>" <|-- AccessoryRepository
IAccessoryRepository <|-- AccessoryRepository
class ComponentRepository {
}
"RepositoryBase`1" "<Component>" <|-- ComponentRepository
IComponentRepository <|-- ComponentRepository
class ConsumableRepository {
}
"RepositoryBase`1" "<Consumable>" <|-- ConsumableRepository
IConsumableRepository <|-- ConsumableRepository
class DeviceRepository {
}
"RepositoryBase`1" "<Device>" <|-- DeviceRepository
IDeviceRepository <|-- DeviceRepository
class EmployeeRepository {
}
"RepositoryBase`1" "<Employee>" <|-- EmployeeRepository
IEmployeeRepository <|-- EmployeeRepository
class LicenseRepository {
}
"RepositoryBase`1" "<License>" <|-- LicenseRepository
ILicenseRepository <|-- LicenseRepository
abstract class "RepositoryBase`1"<T> {
}
"IRepositoryBase`1" "<T>" <|-- "RepositoryBase`1"
class RepositoryManager {
}
IRepositoryManager <|-- RepositoryManager
interface IAccessoryRepository {
GetAllAccessoriesAsync(userId:Guid, accessoryParameters:AccessoryParameters) : Task<PagedList<Accessory>>
GetAccessoryAsync(userId:Guid, id:Guid, trackChanges:bool) : Task<Accessory>
UpdateAccessory(accessory:Accessory) : void
CreateAccessory(accessory:Accessory) : void
DeleteAccessory(accessory:Accessory) : void
}
"IRepositoryBase`1" "<Accessory>" <|-- IAccessoryRepository
interface IComponentRepository {
GetAllComponentsAsync(userId:Guid, componentParameters:ComponentParameters) : Task<PagedList<Component>>
GetComponentAsync(userId:Guid, id:Guid, trackChanges:bool) : Task<Component>
UpdateComponent(component:Component) : void
CreateComponent(component:Component) : void
DeleteComponent(component:Component) : void
}
"IRepositoryBase`1" "<Component>" <|-- IComponentRepository
interface IConsumableRepository {
GetAllConsumablesAsync(userId:Guid, consumableParameters:ConsumableParameters) : Task<PagedList<Consumable>>
GetConsumableAsync(userId:Guid, id:Guid, trackChanges:bool) : Task<Consumable>
UpdateConsumable(consumable:Consumable) : void
CreateConsumable(consumable:Consumable) : void
DeleteConsumable(consumable:Consumable) : void
}
"IRepositoryBase`1" "<Consumable>" <|-- IConsumableRepository
interface IDeviceRepository {
GetAllDevicesAsync(userId:Guid, deviceParameters:DeviceParameters) : Task<PagedList<Device>>
GetDeviceAsync(userId:Guid, id:Guid, trackChanges:bool) : Task<Device>
UpdateDevice(device:Device) : void
CreateDevice(device:Device) : void
DeleteDevice(device:Device) : void
GetAllEmployeeDevicesAsync(employeeId:Guid) : Task<IEnumerable<Device>>
}
"IRepositoryBase`1" "<Device>" <|-- IDeviceRepository
interface IEmployeeRepository {
GetAllEmployees(userId:Guid, employeeParameters:EmployeeParameters) : Task<PagedList<Employee>>
GetEmployeeAsync(userId:Guid, id:Guid, trackChanges:bool) : Task<Employee>
UpdateEmployee(employee:Employee) : void
CreateEmployee(employee:Employee) : void
DeleteEmployee(employee:Employee) : void
}
"IRepositoryBase`1" "<Employee>" <|-- IEmployeeRepository
interface ILicenseRepository {
GetAllLicensesAsync(userId:Guid, licenseParameters:LicenseParameters) : Task<PagedList<License>>
GetLicenseAsync(userId:Guid, id:Guid, trackChanges:bool) : Task<License>
UpdateLicense(license:License) : void
CreateLicense(license:License) : void
DeleteLicense(license:License) : void
}
"IRepositoryBase`1" "<License>" <|-- ILicenseRepository
interface "IRepositoryBase`1"<T> {
FindAll() : IQueryable<T>
FindByCondition(expression:Expression<Func<T, bool>>, trackChanges:bool) : IQueryable<T>
Create(entity:T) : void
CreateRange(entities:IEnumerable<T>) : void
Update(entity:T) : void
Delete(entity:T) : void
DeleteRange(entities:IEnumerable<T>) : void
}
interface IRepositoryManager {
Employee : IEmployeeRepository <<get>>
Device : IDeviceRepository <<get>>
Accessory : IAccessoryRepository <<get>>
Component : IComponentRepository <<get>>
Consumable : IConsumableRepository <<get>>
License : ILicenseRepository <<get>>
SaveAsync() : Task
}
@enduml
| false | true | false | false | class |
8a015de1fd0b3bef5288357780f058309061c831 | 77b70352a642e53061e20fc3dd37b9fe09aa82ba | /searchProduct.puml | 66a6dbf50cde09d030b4e2d1fa36a2c31fe129a8 | [] | no_license | Jack-Baucke/INFO202-Project | 2ca0329b10d2a59cb4d2a6a2776bb75081ec7988 | 60da62325e9e433cbbc93a2fb95ac92db376b79c | refs/heads/master | 2020-04-04T21:49:24.741107 | 2018-11-05T23:57:26 | 2018-11-05T23:57:26 | 156,299,584 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,640 | puml | @startuml
' style tweaks to make the diagram a little more readable
skinparam {
Style strictuml
RoundCorner 8
Sequence {
' make activations yellow too
LifeLineBackgroundColor #FDFDCD
' make stereotypes less ugly
Stereotype {
Font {
Size 11
Style plain
}
}
}
DatabaseBorderColor #A80036
}
title Search for Products by ID (using DB dao)
actor User as user
participant "Administration" as main << main >>
participant "MainMenu" as menu << frame >>
participant "ProductReportDialog" as dialog << dialog >>
participant "ProductDatabaseDAO" as dao << ProductDAO >>
participant "SimpleListModel\n:model" as model
database "Database" as db
main++
create menu
main -> menu : « construct »
user ->> menu : clicks 'View Products'
menu++
create dialog
menu -> dialog++ : « construct »
create dao
dialog -> dao : « construct »
dialog -> dao++ : getProducts()
dao -> db++ : select * from product
return ResultSet
dao -> dao : reconstruct products\nfrom ResultSet
return products
create model
dialog -> model : « construct »
dialog -> model++ : updateItems(products)
model--
dialog -> dialog : lstProducts.setModel(model)
note left : products now\nvisible to user
user -> dialog : enters product id into search bar
dialog -> dialog : txtId.getText : id
user -> dialog : clicks "Search"
dialog -> dao : search(id)
dao -> db++ : select * from product where product_id = id
return product
dialog -> model++ : updateItems(product)
dialog -> dialog : lstProducts.getModel(model)
model--
note left : only searched product\nnow visible to user
@enduml
| false | true | true | false | usecase |
69cc37099611e51f3726f889dc7589ee35e4cead | 57fbc019b098405977ffe0e93551d48425ba78d0 | /smart-contracts/nft/cryptopunks-contract-model.plantuml | f4a5c724af28928c07b9cf7f674ae2d45d0f9aa6 | [] | no_license | 3rdstage/models | 40922c538ad3b56a555817d2258ee5f863002fca | 7d6d41020f53fb39eace3fa3987af63a56d0ace3 | refs/heads/master | 2023-07-19T08:53:40.724866 | 2023-01-09T09:00:46 | 2023-01-09T09:00:46 | 205,056,655 | 0 | 2 | null | 2021-11-04T06:22:06 | 2019-08-29T01:39:54 | D | UTF-8 | PlantUML | false | false | 2,784 | plantuml | @startuml
' CryptoPunksMarket contract class model
' https://github.com/larvalabs/cryptopunks/blob/master/contracts/CryptoPunksMarket.sol
' https://plantuml.com/class-diagram
' https://plantuml.com/sequence-diagram
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html#class
' https://plantuml.com/creole
' https://www.w3schools.com/colors/colors_names.asp
skinparam {
DefaultFontName Monaco
'DefaultFontName Consolas
'DefaultFontName Lucida Console
'DefaultMonospacedFontName Consolas
'DefaultFontStyle bold
BackgroundColor transparent
PageMargin 10
BoxPadding 100
ParticipantPadding 20
ArrowFontSize 16
ArrowThickness 1
MinClassWidth 75
ClassFontStyle bold
NoteBackgroundColor SeaShell
NoteBorderColor transparent
NoteShadowing false
}
skinparam Sequence{
DividerBorderThickness 1.5
ReferenceBorderThickness 1.5
MessageAlignment right
ArrowColor DarkSlateGray
ArrowThickness 1.3
LifeLineBorderColor DarkSlateGray
LifeLineBorderThickness 1.3
ActorBorderColor DarkSlateGray
ActorBackgroundColor GhostWhite
ParticipantBorderColor DarkSlateGray
ParticipantBorderThickness 1.5
ParticipantBackgroundColor GhostWhite
BoxBackgroundColor transparent
BoxBorderColor transparent
GroupBorderThickness 1.3
GroupBorderColor Indigo
GroupBodyBackgroundColor LavenderBlush
}
skinparam Group{
BorderThickness 1.3
BorderShadowing true
}
hide Circle
hide Footbox
caption ""[[https://github.com/larvalabs/cryptopunks/blob/master/contracts/CryptoPunksMarket.sol CryptoPunksMarket]]"" contract
class CryptoPunksMarket <<contract>> {
- owner : address
+ totalSupply : uint256
+ nextPunkIndexToAssign : uint
+ punkIndexToAddress : mapping(uint256 => address)
+ balanceOf : mapping(address => uint256)
+ punksOfferedForSale : mapping(uint => Offer)
+ punkBids : mapping(uint => Bid)
+ pendingWithdrawals : mapping (address => uint)
..
+ setInitialOwner(to, punkIndex)
+ setInitialOwners(addresses, indices)
+ getPunk(punkIndex)
+ transferPunk(to, punkIndex)
+ offerPunkForSale(punkIndex, minSalePriceInWei)
+ offerPunkForSaleToAddress(punkIndex, minSalePriceInWei, toAddress)
+ <<payable>> buyPunk(punkIndex)
+ withdraw()
+ <<payable>> enterBidForPunk(punkIndex)
+ acceptBidForPunk(punkIndex, uint minPrice)
+ withdrawBidForPunk(punkIndex)
}
class Offer <<struct>> {
isForSale : bool
punkIndex : uint
seller : address
minValue : uint
onlySellTo : address
}
Offer --right--* CryptoPunksMarket
class Bid <<struct>> {
hasBid : bool
punkIndex : uint
bidder : address
uint : value
}
Bid --right--* CryptoPunksMarket
@enduml
| false | true | false | false | class |
a2397f0fd93df14316ea27d17ee903f6ab38f96b | 0df23b543bb66bb6e1c0286cdbc8cbd7eff21a04 | /2A/complement_info/img/uml_src/class_diagram_poo_bridge_pattern_advanced.puml | ba38dd31c9bb03bccd1a5b17fa56b76b5e3da4a0 | [] | no_license | HealerMikado/Cours-Ensai-Informatique | 6994c2cba04ebb9ac8d825247672eb3fdfe7c56c | 5574d68ca72037588bded43343bc4fe125101318 | refs/heads/master | 2023-01-12T19:41:38.953966 | 2020-09-07T12:30:08 | 2020-09-07T12:30:08 | 193,241,863 | 2 | 2 | null | 2023-01-06T11:33:02 | 2019-06-22T14:17:22 | HTML | UTF-8 | PlantUML | false | false | 1,280 | puml | @startuml
scale 2
abstract class AbstractSource << abstract >> {
String name
Date start_collect
Date end_collect
common_process()
{abstract} custom_process()
process()
}
class Survey {
custom_process()
}
class Census {
custom_process()
}
class Webscrapping {
custom_process()
}
class AdministrativeFile {
custom_process()
}
abstract class AbstractFile << abstract >> {
String path
{abstract} void parse()
}
class JsonFile {
void parse()
}
class CsvFile {
void parse()
}
class XmlFile {
void parse()
}
abstract class AbstractStatisticalProcess << abstract >> {
{abstract} void statistical_process()
}
class Exploration {
void statistical_process()
}
class Regression {
void statistical_process()
}
class KMeans{
void statistical_process()
}
AbstractSource <|-- Survey
AbstractSource <|-- Census
AbstractSource <|-- Webscrapping
AbstractSource <|-- AdministrativeFile
AbstractFile <|-up-JsonFile
AbstractFile <|-up-CsvFile
AbstractFile <|-up-XmlFile
AbstractStatisticalProcess <|-up- Exploration
AbstractStatisticalProcess <|-up- Regression
AbstractStatisticalProcess <|-up- KMeans
AbstractSource o-right-"1" AbstractFile
AbstractSource o-left-"1" AbstractStatisticalProcess
@enduml | false | true | false | false | class |
89e80711e3b0de5f63e4a7ef5d164b291f803220 | dc01dbc16556236214d634f4bbbd24b31be27902 | /UML/Classdiagram.plantuml | 86ab1e71b9c02743939c7028c030291a38f17a45 | [] | no_license | c-odenk/DigitalesParkhaus | 6fdd725fa0a86c852b0c2ba697e8d3be505837af | 324261ecb8ee0a6f505daaa368511172c675f6c0 | refs/heads/master | 2022-12-27T10:10:53.457045 | 2020-10-08T21:32:13 | 2020-10-08T21:32:13 | 299,742,183 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,608 | plantuml | @startuml
frame "cd Parkhaussystem" {
class AbstractPublisher [[java:parkhaus.model.AbstractPublisher]] {
+void addView(View v)
+void update()
}
class View [[java:parkhaus.model.View]] {
}
AbstractPublisher -u-> "*" View : views
class Parkhaus [[java:parkhaus.model.Parkhaus]] {
-{static}long serialVersionUID
-{static}int count
-{static}String state
+Parkhaus()
#void doGet(HttpServletRequest request, HttpServletResponse response)
#void doPost(HttpServletRequest request, HttpServletResponse response)
-{static}String getBody(HttpServletRequest request)
}
class Berechnung [[java:parkhaus.model.Berechnung]] {
}
Parkhaus --> "1" Berechnung : calc
class Einweiser [[java:parkhaus.model.Einweiser]] {
}
Parkhaus --> "1" Einweiser : guide
class SumView [[java:parkhaus.model.SumView]] {
}
Parkhaus -d-> "1" SumView : sum
class AvgView [[java:parkhaus.model.AvgView]] {
}
Parkhaus -d-> "1" AvgView : avg
class HttpServlet [[java:javax.servlet.http.HttpServlet]] {
}
HttpServlet <|-- Parkhaus
class Auto [[java:parkhaus.model.Auto]] {
-int parkplatz
-String ticket
+Auto()
+Auto(int p, String t)
+int getParkplatz()
+String getTicket()
+void setParkplatz(int p)
+void setTicket(String t)
}
interface AutoIF [[java:parkhaus.interfaces.AutoIF]] {
}
AutoIF <|.. Auto
class ParkhausServlet [[java:parkhaus.controller.ParkhausServlet]] {
-{static}long serialVersionUID
+ParkhausServlet()
-void processPost(HttpServletRequest request, HttpServletResponse response)
-void processGet(HttpServletRequest request, HttpServletResponse response)
#void doGet(HttpServletRequest request, HttpServletResponse response)
#void doPost(HttpServletRequest request, HttpServletResponse response)
}
class Einweiser [[java:parkhaus.model.Einweiser]] {
}
ParkhausServlet --> "1" Einweiser : guide
class Verwalter [[java:parkhaus.model.Verwalter]] {
}
ParkhausServlet --> "1" Verwalter : verwalter
class HttpServlet [[java:javax.servlet.http.HttpServlet]] {
}
HttpServlet <|-- ParkhausServlet
class SumView [[java:parkhaus.model.SumView]] {
~float sum
+float view()
+void update()
}
class View [[java:parkhaus.model.View]] {
}
View <|-u- SumView
class Berechnung [[java:parkhaus.model.Berechnung]] {
~List<Float> costs
+Berechnung()
+void addCost(float cost)
+List<Float> getCosts()
+int getSize()
}
class AbstractPublisher [[java:parkhaus.model.AbstractPublisher]] {
}
AbstractPublisher <|-r- Berechnung
interface BerechnungIF [[java:parkhaus.interfaces.BerechnungIF]] {
}
BerechnungIF <|.u. Berechnung
class Verwalter [[java:parkhaus.model.Verwalter]] {
-int offenVon
-int offenBis
-int max
-float preisMitarbeiter
-float preisKunde
-boolean changed
+Verwalter()
+void setOpen(int set)
+void setClosed(int set)
+void setPreisMitarbeiter(float set)
+void setPreisKunde(float set)
+void setMax(int set)
+void setChange()
+int getOpen()
+int getClosed()
+int getMax()
+float getPreisMitarbeiter()
+float getPreisKunde()
+boolean getChanged()
}
interface VerwalterIF [[java:parkhaus.interfaces.VerwalterIF]] {
}
VerwalterIF <|.u. Verwalter
class AutoIFTest [[java:parkhaus.tests.AutoIFTest]] {
~void testGetParkplatz()
~void testGetTicket()
~void testSetParkplatz()
~void testSetTicket()
}
class AutoIF [[java:parkhaus.interfaces.AutoIF]] {
}
AutoIFTest -l-> "1" AutoIF : a1
class Datum [[java:parkhaus.model.Datum]] {
~{static}Date datum
~{static}SimpleDateFormat zeitFormat
~{static}SimpleDateFormat datumFormat
+{static}String test()
+{static}String zeitToString()
+{static}String datumToString()
}
abstract class View [[java:parkhaus.model.View]] {
+void subscribe(Berechnung m)
+{abstract}void update()
}
class Berechnung [[java:parkhaus.model.Berechnung]] {
}
View --> "1" Berechnung : model
class Finanzen [[java:parkhaus.model.Finanzen]] {
-double preisKunde
-double preisMitarbeiter
-double umsatz
-double kostenFix
-double kostenPersonal
-double kostenAbschreibungen
-double umsatzsteuer
+void setPreisKunde(float preis)
+void setPreisMitarbeiter(float preis)
+void setUmsatz(float sum)
+double getPreisKunde()
+double getPreisMitarbeiter()
+double getUmsatzSteuer()
+double getUmsatz()
+double getUst()
+double getKostenFix()
+double getKostenPersonal()
+double getGewinn()
}
interface FinanzenIF [[java:parkhaus.interfaces.FinanzenIF]] {
}
FinanzenIF <|.d. Finanzen
class Einweiser [[java:parkhaus.model.Einweiser]] {
-int max
-int[] platzBelegt
+Einweiser()
+int enter(Auto in)
+Auto leave(Auto out)
+void addCar(Auto in)
+List<Auto> getCars()
+int getSize()
+int getMax()
+boolean isFree(int spot)
+int getFree()
+int getOccupied()
}
class Auto [[java:parkhaus.model.Auto]] {
}
Einweiser -d-> "*" Auto : cars
interface EinweiserIF [[java:parkhaus.interfaces.EinweiserIF]] {
}
EinweiserIF <|.. Einweiser
interface EinweiserIF [[java:parkhaus.interfaces.EinweiserIF]] {
int enter(Auto in)
Auto leave(Auto out)
void addCar(Auto in)
List<Auto> getCars()
int getSize()
int getMax()
boolean isFree(int spot)
int getFree()
int getOccupied()
}
class EinweiserIFTest [[java:parkhaus.tests.EinweiserIFTest]] {
~int in
~void setUp()
~void testEnterAndSize()
~void testLeave()
}
class EinweiserIF [[java:parkhaus.interfaces.EinweiserIF]] {
}
EinweiserIFTest --> "1" EinweiserIF : e
interface FinanzenIF [[java:parkhaus.interfaces.FinanzenIF]] {
void setPreisKunde(float preis)
void setPreisMitarbeiter(float preis)
void setUmsatz(float sum)
double getPreisKunde()
double getPreisMitarbeiter()
double getUmsatzSteuer()
double getUmsatz()
double getUst()
double getKostenFix()
double getKostenPersonal()
double getGewinn()
}
interface VerwalterIF [[java:parkhaus.interfaces.VerwalterIF]] {
void setOpen(int set)
void setClosed(int set)
void setMax(int set)
void setPreisMitarbeiter(float set)
void setPreisKunde(float set)
int getOpen()
int getClosed()
int getMax()
float getPreisMitarbeiter()
float getPreisKunde()
}
class AvgView [[java:parkhaus.model.AvgView]] {
~float avg
+float view()
+void update()
}
class View [[java:parkhaus.model.View]] {
}
View <|-u- AvgView
interface BerechnungIF [[java:parkhaus.interfaces.BerechnungIF]] {
void addCost(float cost)
List<Float> getCosts()
int getSize()
}
class BerechnungIFTest [[java:parkhaus.tests.BerechnungIFTest]] {
~void setUp()
~void testAddCost()
~void testGetSum()
~void testGetAvg()
}
class Berechnung [[java:parkhaus.model.Berechnung]] {
}
BerechnungIFTest -l-> "1" Berechnung : test
interface AutoIF [[java:parkhaus.interfaces.AutoIF]] {
int getParkplatz()
String getTicket()
void setParkplatz(int p)
void setTicket(String t)
}
}
@enduml | false | true | false | false | sequence |
d55cf9a93926ccc7385d08cf07028678ccdd69cc | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductRemovedFromCategoryMessagePayload.puml | 383cf4c84c9034b81dc1d199c5d9208c1ba98569 | [] | 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 | 514 | 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 ProductRemovedFromCategoryMessagePayload [[ProductRemovedFromCategoryMessagePayload.svg]] extends MessagePayload {
type: String
category: [[CategoryReference.svg CategoryReference]]
staged: Boolean
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
7a2c5600b06da8519733d2c12dddda7a54b8168d | 1a4425d261b5b2b4b838ace7faaea783c3d23529 | /use-cases/use-case-1-diagram.puml | 1c63438a39b1c0359d02d1821e7d59c6dec667f9 | [
"Apache-2.0"
] | permissive | WezYoung/SEmethodsCoursework | 3d1c7e681d8056e6361a964f96dfc07cd534b630 | 4003f4236809909f1ef91b44560106353648a1ce | refs/heads/master | 2020-12-20T08:16:16.145665 | 2020-03-16T16:06:58 | 2020-03-16T16:06:58 | 236,011,641 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 266 | puml | @startuml
actor HR as "Statistic Analyst"
rectangle Database
rectangle "Country Program " {
usecase UC1 as "Get Countries from
largest to smallest"
usecase UCa as "Displays report"
HR - UC1
UC1 ..> UCa : include
UC1 - Database
}
@enduml | false | true | false | false | usecase |
3191194d3c54dca85bcb59ff15da4aa5e2f1e6f7 | c7e9029e47bbbe5109e260fc088ca1122b10b091 | /diagrams/comments/classes.puml | cc337f6c5931ff7cf930d5c072da91718189b076 | [] | no_license | AlexandreGerault/OpenClassrooms_Blog | 9d22f4912cc5255bfe3404480f237a58ce9d5174 | c818aebc04a601d4794e4a84fd45a641e811a0ed | refs/heads/develop | 2023-07-01T04:38:07.607803 | 2021-07-23T10:21:35 | 2021-07-23T10:21:35 | 366,793,456 | 0 | 1 | null | 2021-07-18T13:02:30 | 2021-05-12T17:14:53 | Twig | UTF-8 | PlantUML | false | false | 4,951 | puml | @startuml
'https://plantuml.com/class-diagram
package Comments {
class Comment {
-email: string
-name: string
-content: string
-article: Article
-validated: bool
-createdAt: DateTimeInterface
+email(): string
+name(): string
+content(): string
+article(): Article
+validated(): bool
+createdAt(): DateTimeInterface
}
interface CommentsRepositoryInterface{
+allComments(): Comment[]
+createCommentToBeValidated(article: Article, values: Array): void
+validComment(id: int): void
+invalidComment(id: int): void
+delete(id: int): void
+get(id: int): Comment
}
class CommentsRepository implements CommentsRepositoryInterface {
-PDO
}
class SubmitCommentController {
+ __invoke(request: ServerRequestInterface): ResponseInterface
}
class CommentValidator {
-pdo: PDO
-inputs: array
+rules(): array
}
CommentsRepositoryInterface ..> Comment
SubmitCommentController ..> CommentValidator
}
package Articles {
class Article {
-title: string
-slug: string
-chapo: string
-content: string
-author: User
-createdAt: DateTimeInterface
-updatedAt: DateTimeInterface
+title(): string
+slug(): string
+chapo(): string
+content(): string
+author(): User
+createdAt(): DateTimeInterface
+updatedAt(): DateTimeInterface
}
interface ArticlesRepositoryInterface {
+getRecentArticlesForPage(page: int): Articles[];
+getArticleBySlug(slug: string): Article;
+getArticleBySlugWithValidatedComments(slug: string): Article;
+getArticleById(id: int): Article;
+store(post: Article): void;
+update(id: int, values: array): void;
+delete(id: int): void;
}
class ArticlesRepository implements ArticlesRepositoryInterface {
- pdo: PDO
}
class Controllers/BlogController {
+index(request: ServerRequestInterface): ResponseInterface
+show(ServerRequestInterface request, id: int): ResponseInterface
}
ArticlesRepositoryInterface ..> Article
"Controllers/BlogController" ..> ArticlesRepositoryInterface
}
package Backoffice {
class BlogController {
+index(request: ServerRequestInterface): ResponseInterface
+create(request: ServerRequestInterface): ResponseInterface
+store(request: ServerRequestInterface): ResponseInterface
+show(request: ServerRequestInterface, id: int): ResponseInterface
+edit(request: ServerRequestInterface, id: int): ResponseInterface
+update(request: ServerRequestInterface, id: int): ResponseInterface
+delete(request: ServerRequestInterface, id: int): ResponseInterface
}
class CommentsController {
-pdo: PDO
-twig: TwigEnvironment
+index(): ResponseInterface
+validComment(request: ServerRequestInterface, id: int): ResponseInterface
+invalidComment(request: ServerRequestInterface, id: int): ResponseInterface
+delete(request: ServerRequestInterface, id: int): ResponseInterface
+show(request: ServerRequestInterface, id: int): ResponseInterface
}
class ArticleValidator {
-pdo: PDO
-inputs: array
+rules(): array
}
BlogController ..> ArticleValidator
CommentsController ..> CommentsRepositoryInterface
}
package Authentication {
interface UserInterface {
+name(): string;
+isValidated(): bool;
+isAdmin(): bool;
}
class LoginController {
+ __invoke(request: ServerRequestInterface): ResponseInterface
}
class LogoutController {
+ __invoke(request: ServerRequestInterface): ResponseInterface
}
class RegistrationController {
+ __invoke(request: ServerRequestInterface): ResponseInterface
}
interface UsersRepositoryInterface {
+register(name: string, email: string, password: string): AuthenticatableInterface
}
class AuthService {
+attempt(login: string, password: string): AuthenticatableInterface
+check(): bool
+user(): User
+logout(): void
}
class User implements UserInterface {
-string name
-string email
-bool admin
+email(): string
}
AuthService ..> UserInterface
LoginController ..> AuthService
LogoutController ..> AuthService
RegistrationController ..> AuthService
class UsersRepository implements UsersRepositoryInterface {}
AuthService ..> UsersRepositoryInterface
}
SubmitCommentController ..> ArticlesRepositoryInterface
SubmitCommentController ..> CommentsRepositoryInterface
BlogController ..> ArticlesRepositoryInterface
BlogController ..> AuthService
@enduml
| false | true | false | false | class |
22ba0eccac3e2ec69a29bd75b6739e2aafbe2563 | b7e8bc7e94e19b28899eba1b78ca9a41de7b10c0 | /.idea/modules/livekit/livekit.plantuml | 3cec981bc1b427db21ebfb59d5ebecb9674b54a7 | [] | no_license | desfate/liveKit | 8ef705c57da116c682aad6a0021c7e7187a98286 | 23dfb161ea2bb74655d85f45348e8465189d3a96 | refs/heads/master | 2023-04-08T22:48:47.215826 | 2021-04-19T01:44:46 | 2021-04-19T01:44:46 | 301,649,263 | 5 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 16,612 | plantuml | @startuml
title __LIBBUILD.LIVEKIT's Class Diagram__\n
namespace github.com.desfate.livekit {
class github.com.desfate.livekit.BuildConfig {
}
}
namespace github.com.desfate.livekit {
class github.com.desfate.livekit.CameraConstant {
}
}
namespace github.com.desfate.livekit {
namespace camera {
class github.com.desfate.livekit.camera.CameraConfig {
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
class github.com.desfate.livekit.camera.CameraControl {
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
class github.com.desfate.livekit.camera.CameraDataControl {
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
class github.com.desfate.livekit.camera.CameraSession {
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
class github.com.desfate.livekit.camera.CameraTextureControl {
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
class github.com.desfate.livekit.camera.CameraTools {
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
class github.com.desfate.livekit.camera.FocusControl {
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace interfaces {
interface github.com.desfate.livekit.camera.interfaces.CameraChangeCallback {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace interfaces {
interface github.com.desfate.livekit.camera.interfaces.CameraErrorCallBack {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace interfaces {
interface github.com.desfate.livekit.camera.interfaces.FocusCallback {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace interfaces {
interface github.com.desfate.livekit.camera.interfaces.FocusStateCallback {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace interfaces {
interface github.com.desfate.livekit.camera.interfaces.OnFrameAvailable {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace news {
class github.com.desfate.livekit.camera.news.CameraClient {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace news {
class github.com.desfate.livekit.camera.news.CameraEngine {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace news {
class github.com.desfate.livekit.camera.news.CameraErrorCode {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace news {
class github.com.desfate.livekit.camera.news.CameraFocusControl {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace news {
class github.com.desfate.livekit.camera.news.CameraInfo {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace news {
interface github.com.desfate.livekit.camera.news.CameraInterface {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace news {
class github.com.desfate.livekit.camera.news.CameraUtils {
}
}
}
}
namespace github.com.desfate.livekit {
namespace camera {
namespace view {
class github.com.desfate.livekit.camera.view.FocusView {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
class github.com.desfate.livekit.gl.RenderVideoFrame {
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace draw {
class github.com.desfate.livekit.gl.draw.GLI420RenderFilter {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace draw {
class github.com.desfate.livekit.gl.draw.GLTexture2DFilter {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace draw {
class github.com.desfate.livekit.gl.draw.GLTextureOESFilter {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace egl {
class github.com.desfate.livekit.gl.egl.EglCore {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace egl {
class github.com.desfate.livekit.gl.egl.EglSurfaceBase {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace interfaces {
interface github.com.desfate.livekit.gl.interfaces.IEGLListener {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace interfaces {
interface github.com.desfate.livekit.gl.interfaces.IGLSurfaceTextureListener {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace interfaces {
interface github.com.desfate.livekit.gl.interfaces.VideoRenderListener {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace thread {
class github.com.desfate.livekit.gl.thread.GLThread {
}
}
}
}
namespace github.com.desfate.livekit {
namespace gl {
namespace thread {
class github.com.desfate.livekit.gl.thread.GLThreadHandler {
}
}
}
}
namespace github.com.desfate.livekit {
namespace live {
interface github.com.desfate.livekit.live.LiveCallBack {
}
}
}
namespace github.com.desfate.livekit {
namespace live {
class github.com.desfate.livekit.live.LiveConfig {
}
}
}
namespace github.com.desfate.livekit {
namespace live {
class github.com.desfate.livekit.live.LivePushControl {
}
}
}
namespace github.com.desfate.livekit {
namespace live {
interface github.com.desfate.livekit.live.LivePushInterface {
}
}
}
namespace github.com.desfate.livekit {
namespace live {
class github.com.desfate.livekit.live.LiveUtils {
}
}
}
namespace github.com.desfate.livekit {
namespace old {
interface github.com.desfate.livekit.old.LiveManager {
}
}
}
namespace github.com.desfate.livekit {
namespace old {
class github.com.desfate.livekit.old.LivePushView {
}
}
}
namespace github.com.desfate.livekit {
namespace reders {
class github.com.desfate.livekit.reders.CameraDrawer {
}
}
}
namespace github.com.desfate.livekit {
namespace reders {
class github.com.desfate.livekit.reders.OpenGLUtils {
}
}
}
namespace github.com.desfate.livekit {
namespace ui {
abstract class github.com.desfate.livekit.ui.BaseLiveView {
}
}
}
namespace github.com.desfate.livekit {
namespace ui {
class github.com.desfate.livekit.ui.DataLivePushView {
}
}
}
namespace github.com.desfate.livekit {
namespace ui {
class github.com.desfate.livekit.ui.LivePlayView {
}
}
}
namespace github.com.desfate.livekit {
namespace utils {
class github.com.desfate.livekit.utils.CoordinateTransformer {
}
}
}
namespace github.com.desfate.livekit {
namespace utils {
class github.com.desfate.livekit.utils.ImageUtil {
}
}
}
namespace github.com.desfate.livekit {
namespace utils {
class github.com.desfate.livekit.utils.JobExecutor {
}
}
}
namespace github.com.desfate.livekit {
namespace utils {
class github.com.desfate.livekit.utils.LiveSupportUtils {
}
}
}
namespace github.com.desfate.livekit {
namespace utils {
class github.com.desfate.livekit.utils.ScreenUtils {
}
}
}
github.com.desfate.livekit.camera.CameraControl o-- github.com.desfate.livekit.ui.BaseLiveView : mBaseLiveView
github.com.desfate.livekit.camera.CameraControl o-- github.com.desfate.livekit.camera.CameraSession : mCameraSession
github.com.desfate.livekit.camera.CameraControl o-- github.com.desfate.livekit.camera.FocusControl : mFocusControl
github.com.desfate.livekit.camera.CameraControl o-- github.com.desfate.livekit.old.LiveManager : mLiveManager
github.com.desfate.livekit.camera.CameraControl o-- github.com.desfate.livekit.utils.JobExecutor : mJobExecutor
github.com.desfate.livekit.camera.CameraDataControl .up.|> github.com.desfate.livekit.live.LivePushInterface
github.com.desfate.livekit.camera.CameraDataControl o-- github.com.desfate.livekit.camera.interfaces.FocusStateCallback : callback
github.com.desfate.livekit.camera.CameraDataControl o-- github.com.desfate.livekit.camera.news.CameraInfo : info
github.com.desfate.livekit.camera.CameraDataControl o-- github.com.desfate.livekit.live.LiveCallBack : liveCallBack
github.com.desfate.livekit.camera.CameraDataControl o-- github.com.desfate.livekit.camera.news.CameraClient : mCameraClient
github.com.desfate.livekit.camera.CameraDataControl o-- github.com.desfate.livekit.camera.FocusControl : mFocusControl
github.com.desfate.livekit.camera.CameraDataControl o-- github.com.desfate.livekit.utils.JobExecutor : mJobExecutor
github.com.desfate.livekit.camera.CameraSession o-- github.com.desfate.livekit.camera.interfaces.CameraChangeCallback : cameraChangeCallback
github.com.desfate.livekit.camera.CameraSession o-- github.com.desfate.livekit.camera.CameraConfig : mCameraConfig
github.com.desfate.livekit.camera.CameraSession o-- github.com.desfate.livekit.camera.interfaces.FocusStateCallback : mFocusStateCallback
github.com.desfate.livekit.camera.CameraSession o-- github.com.desfate.livekit.utils.JobExecutor : mJobExecutor
github.com.desfate.livekit.camera.CameraSession o-- github.com.desfate.livekit.live.LiveConfig : mLiveConfig
github.com.desfate.livekit.camera.CameraTextureControl .up.|> github.com.desfate.livekit.live.LivePushInterface
github.com.desfate.livekit.camera.CameraTextureControl o-- github.com.desfate.livekit.camera.news.CameraInfo : cameraInfo
github.com.desfate.livekit.camera.CameraTextureControl o-- github.com.desfate.livekit.camera.news.CameraClient : mCameraClient
github.com.desfate.livekit.camera.CameraTextureControl o-- github.com.desfate.livekit.gl.interfaces.IGLSurfaceTextureListener : textureListener
github.com.desfate.livekit.camera.CameraTextureControl o-- github.com.desfate.livekit.live.LiveCallBack : callBack
github.com.desfate.livekit.camera.CameraTextureControl o-- github.com.desfate.livekit.gl.thread.GLThread : mGLThread
github.com.desfate.livekit.camera.CameraTextureControl o-- github.com.desfate.livekit.gl.RenderVideoFrame : mRender
github.com.desfate.livekit.camera.FocusControl o-- github.com.desfate.livekit.camera.interfaces.FocusCallback : mFocusCallback
github.com.desfate.livekit.camera.FocusControl o-- github.com.desfate.livekit.camera.view.FocusView : mFocusView
github.com.desfate.livekit.camera.FocusControl o-- github.com.desfate.livekit.utils.CoordinateTransformer : mTransformer
github.com.desfate.livekit.camera.news.CameraClient o-- github.com.desfate.livekit.camera.news.CameraInterface : mCamera
github.com.desfate.livekit.camera.news.CameraEngine .up.|> github.com.desfate.livekit.camera.news.CameraInterface
github.com.desfate.livekit.camera.news.CameraEngine o-- github.com.desfate.livekit.camera.interfaces.CameraErrorCallBack : cameraCallBack
github.com.desfate.livekit.camera.news.CameraEngine o-- github.com.desfate.livekit.camera.news.CameraInfo : cameraInfo
github.com.desfate.livekit.camera.news.CameraEngine o-- github.com.desfate.livekit.camera.news.CameraFocusControl : focusControl
github.com.desfate.livekit.camera.news.CameraEngine o-- github.com.desfate.livekit.camera.interfaces.FocusStateCallback : mFocusStateCallback
github.com.desfate.livekit.camera.news.CameraEngine o-- github.com.desfate.livekit.utils.JobExecutor : mJobExecutor
github.com.desfate.livekit.camera.news.CameraFocusControl o-- github.com.desfate.livekit.camera.interfaces.FocusStateCallback : mFocusStateCallback
github.com.desfate.livekit.camera.view.FocusView -up-|> android.view.View
github.com.desfate.livekit.gl.RenderVideoFrame o-- github.com.desfate.livekit.gl.interfaces.IEGLListener : ieglListener
github.com.desfate.livekit.gl.RenderVideoFrame o-- github.com.desfate.livekit.gl.thread.GLThreadHandler : mGLHandler
github.com.desfate.livekit.gl.RenderVideoFrame o-- github.com.desfate.livekit.gl.draw.GLTexture2DFilter : mTextureFilter
github.com.desfate.livekit.gl.RenderVideoFrame o-- github.com.desfate.livekit.gl.draw.GLI420RenderFilter : mYUVFilter
github.com.desfate.livekit.gl.RenderVideoFrame o-- github.com.desfate.livekit.gl.interfaces.VideoRenderListener : renderListener
github.com.desfate.livekit.gl.egl.EglSurfaceBase o-- github.com.desfate.livekit.gl.egl.EglCore : mEglCore
github.com.desfate.livekit.gl.thread.GLThread o-- github.com.desfate.livekit.gl.draw.GLTextureOESFilter : mGLFilter
github.com.desfate.livekit.gl.thread.GLThread o-- github.com.desfate.livekit.gl.thread.GLThreadHandler : mGLHandler
github.com.desfate.livekit.gl.thread.GLThread o-- github.com.desfate.livekit.gl.interfaces.IGLSurfaceTextureListener : mListener
github.com.desfate.livekit.gl.thread.GLThreadHandler -up-|> android.os.Handler
github.com.desfate.livekit.gl.thread.GLThreadHandler o-- github.com.desfate.livekit.gl.egl.EglSurfaceBase : mEglBase
github.com.desfate.livekit.gl.thread.GLThreadHandler o-- github.com.desfate.livekit.gl.interfaces.IEGLListener : mListener
github.com.desfate.livekit.live.LivePushControl o-- github.com.desfate.livekit.camera.news.CameraInfo : cameraInfo
github.com.desfate.livekit.live.LivePushControl o-- github.com.desfate.livekit.camera.FocusControl : focusControl
github.com.desfate.livekit.live.LivePushControl o-- github.com.desfate.livekit.live.LiveConfig : liveConfig
github.com.desfate.livekit.live.LivePushControl o-- github.com.desfate.livekit.live.LivePushInterface : mControl
github.com.desfate.livekit.old.LivePushView -up-|> github.com.desfate.livekit.ui.BaseLiveView
github.com.desfate.livekit.old.LivePushView o-- github.com.desfate.livekit.camera.CameraControl : cameraControl
github.com.desfate.livekit.old.LivePushView o-- github.com.desfate.livekit.camera.view.FocusView : mFocusView
github.com.desfate.livekit.old.LivePushView o-- github.com.desfate.livekit.reders.CameraDrawer : mDrawer
github.com.desfate.livekit.old.LivePushView o-- github.com.desfate.livekit.utils.JobExecutor : mJobExecutor
github.com.desfate.livekit.ui.BaseLiveView .up.|> android.graphics.SurfaceTexture.OnFrameAvailableListener
github.com.desfate.livekit.ui.BaseLiveView .up.|> android.opengl.GLSurfaceView.Renderer
github.com.desfate.livekit.ui.BaseLiveView -up-|> android.opengl.GLSurfaceView
github.com.desfate.livekit.ui.DataLivePushView -up-|> github.com.desfate.livekit.ui.BaseLiveView
github.com.desfate.livekit.ui.DataLivePushView o-- github.com.desfate.livekit.live.LivePushControl : control
github.com.desfate.livekit.ui.DataLivePushView o-- github.com.desfate.livekit.camera.view.FocusView : focusView
github.com.desfate.livekit.ui.DataLivePushView o-- github.com.desfate.livekit.live.LiveConfig : liveConfig
github.com.desfate.livekit.ui.DataLivePushView o-- github.com.desfate.livekit.reders.CameraDrawer : mDrawer
github.com.desfate.livekit.ui.LivePlayView -up-|> github.com.desfate.livekit.ui.BaseLiveView
github.com.desfate.livekit.ui.LivePlayView o-- github.com.desfate.livekit.camera.interfaces.CameraChangeCallback : callBack
github.com.desfate.livekit.ui.LivePlayView o-- github.com.desfate.livekit.reders.CameraDrawer : mDrawer
github.com.desfate.livekit.ui.LivePlayView o-- github.com.desfate.livekit.utils.JobExecutor : mJobExecutor
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 |
26f70d350fc80872fda765dca312f31707d5d247 | 83ed833e472c96463f6774af1b9a2b7854505843 | /src/main/doc/xpom.puml | dd1270031d3b692834dec68d40339c85cc6db31d | [] | no_license | pseudochaos/xpom | 9acf33937e364b097b217800e1cfca406098ccc2 | 5a4e2e93ecb2342c1982d99d2d923210bc9175dd | refs/heads/master | 2020-05-15T15:24:57.051639 | 2015-08-25T21:53:05 | 2015-08-25T21:53:05 | 41,386,295 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 589 | puml | @startuml
class XPomFactory {
+ {static} new(typeToken: Class<T>) : XPom<T>
}
class XPom <T> {
+ using (xml: String) : T
}
note right : T defines type which this\nfactory will be producing
class Configuration {
}
XPomFactory ..> XPom : <<create>>
XPomFactory ..> Configuration : <<create>>
XPom ..> Configuration : <<create>>
enum ExceptionHandlingPolicy {
DAYS
HOURS
MINUTES
}
@enduml
XPom<User> userBuilder = XPomFactory.create(User);
User user = userBuilder.using(xml);
User user = XPomFactory.create(User).using(xml);
User user = create(User).using(xml);
| false | true | false | false | class |
34c9c51cf5fdc945eb077f186eaf7f6b7599f76b | 34acd2aa8d51295c0c4289e43e8961f5e23b5a08 | /PlantUML/raw/Custom/ElCazador.Worker/Modules/BaseModule.puml | 8e2a03027701ee7a9e8b8dafdee2cdb590e38341 | [] | no_license | fisboger/Thesis | a6887e195c7daa8317abe3167de1676420173e33 | 4746126f69da615c641380fd7a33c863f2fedee3 | refs/heads/master | 2020-04-03T15:18:08.671739 | 2019-02-07T11:17:06 | 2019-02-07T11:17:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 172 | puml | @startuml
class BaseModule {
# Controller : IWorkerController <<get>>
+ Name : string <<get>>
# BaseModule(controller:IWorkerController, name:string)
}
@enduml
| false | true | false | false | class |
6ff0e8fc8f90e5c366d98201feaea3bcedd35a46 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartSetShippingMethodTaxAmountAction.puml | 19d40cbe75fd19c6e7dab238dc82f0f41f6a2204 | [] | 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 | 539 | 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 CartSetShippingMethodTaxAmountAction [[CartSetShippingMethodTaxAmountAction.svg]] extends CartUpdateAction {
action: String
shippingKey: String
externalTaxAmount: [[ExternalTaxAmountDraft.svg ExternalTaxAmountDraft]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
4310f52f09b4bebff669310e28c558652b065bc7 | 12111d4d3770929fb6949182e4bdf8c40b1451e0 | /Course/Documents/Observe.plantuml | 06cf4500b52aa132be5eb6e09c48da8b5fb32e72 | [] | no_license | Remi-p/CoAP-Demonstration | 331fd7e8d8bd631c3f7fca3b0dd54e9e7c616060 | f3c30dae196c533a4c071d4b93e5c35aff6a3803 | refs/heads/master | 2021-01-13T04:15:53.972675 | 2017-01-08T21:45:16 | 2017-01-08T21:47:02 | 77,450,536 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,185 | plantuml | @startuml
participant "**Sensor**\n(Server)" as Sensor
actor "**Client**" as Client
group Registration
note over Client: Creates\na token
Client -> Sensor : **GET /temperature**\nToken: 0x4a\nObserve: 0
note right: Registration
note over Sensor: Add entry in lists of observers
Sensor -> Client : **2.05 Content**\nToken: 0x4a\nObserve: 12\nPayload: 22.9 Cel
note left: Notification of\ncurrent state
end
...
group Publishing
Sensor -> Client : **2.05 Content**\nToken: 0x4a\nObserve: 44\nPayload: 22.4 Cel
note left: Notification upon\na state changed
...
Sensor -> Client : **2.05 Content**\nToken: 0x4a\nObserve: 60\nPayload: 23.0 Cel
note left: Notification upon\na state changed
end
...
group Unregister
note over Client: Forget the observation\n> Forget the token
Sensor -> Client : **2.05 Content**\nToken: 0x4a\nObserver: 87\nPayload: 22.7 Cel
note left: Notification upon\na state changed
Client -> Sensor : **RST Message**
note right: Client doesn't\nknow the token\nIt sends a\nreset message
note over Sensor: Remove entry in list of observers
end
' Cf. https://tools.ietf.org/html/rfc7641
@enduml
| false | true | false | false | usecase |
661f99f4f70d04b64707d3963c86d3ccce2e2031 | 1fa352c758cc27d3bc9e74277b5d9bb4fe55a001 | /system_model/ibd-ventilator-splitter-assembly.puml | ee357dcf5458d567daa9f9246f72711579f96368 | [
"CERN-OHL-P-2.0"
] | permissive | Burhan-Q/project-ventilator-splitter | 0f3a8b69b0dc41b76ad62452dc92f8db5516083c | 5b2eb6f543ba9d0d5ccb956c77108f8052853abe | refs/heads/master | 2022-11-26T05:00:14.197118 | 2020-07-25T16:38:41 | 2020-07-25T16:38:41 | 261,558,867 | 1 | 0 | NOASSERTION | 2020-07-25T16:38:42 | 2020-05-05T18:59:24 | Python | UTF-8 | PlantUML | false | false | 1,821 | puml | @startuml
left to right direction
skinparam linetype polyline
/'
skinparam linetype ortho
'/
frame "ibd [System] Ventilator Splitter Assembly [Air flow] " {
actor "<b>patient</b>" <<human>> as patient
component "<b>LTV-1200</b>" <<ventilator>> as ventilator {
interface "<b>Expiratory Port</b>" as pOut
interface "<b>Inspiratory Port</b>" as pIn
}
component "<b>Inspiratory Arm P/N</b>" <<Inspiratory Arm>> as armIn
component "<b>Expiratory Arm P/N</b>" <<Expiratory Arm>> as armOut
pOut <.. armOut
pIn ..> armIn
component "<b>Ventilator Splitter Assembly</b>" <<block>> as vsb {
component "<b>Inspiratory Section</b>" <<block>> as vsbIn
component "<b>Expiratory Section</b>" <<block>> as vsbOut
interface "<b>Inspiratory Port</b>" as vsbpIn
interface "<b>Expiratory Port</b>" as vsbpOut
component "<b>Bias Circuit P/N</b>" <<bias circuit>> as bc
vsbpOut -- vsbOut
vsbpIn -- vsbIn
vsbOut <. bc
bc <. vsbIn
component "<b>1-Way Valve P/N</b>" <<1-Way valve>> as vIn1
component "<b>Flow Control P/N</b>" <<flow control>> as fcIn1
component "<b>Shutoff valve P/N</b>" <<shutoff valve>> as sIn1
vsbIn ...> vIn1
vIn1 ..> fcIn1
fcIn1 ..> sIn1
component "<b>1-Way Valve P/N</b>" <<1-Way valve>> as vOut1
component "<b>Pressure sensor P/N</b>" <<pressure sensor>> as psOut1
component "<b>Shutoff valve P/N</b>" <<shutoff valve>> as sOut1
vsbOut <... vOut1
vOut1 <.. psOut1
psOut1 <.. sOut1
}
armIn ..> vsbpIn
armOut <.. vsbpOut
component "<b>Inspiratory Arm to patient P/N</b>" <<Inspiratory Arm>> as arm2patIn
component "<b>Expiratory Arm to patient P/N</b>" <<Expiratory Arm>> as arm2patOut
sIn1 ..> arm2patIn
arm2patIn ..> patient
sOut1 <.. arm2patOut
arm2patOut <.. patient
}
@enduml
| false | true | false | false | sequence |
02e3fabd3960c1ed40a71664e441dee4813910e6 | a234d20e1e5ef85ff94394186c3a03d3b81c4b23 | /docs/diagrams/TestCaseClassDiagram.puml | 3ed1d1e50ca612f9c750d2b178370635c5b09de3 | [
"LicenseRef-scancode-other-permissive",
"MIT"
] | permissive | alxkohh/Duke-Academy | 1bd014d02e87481e9c082b54509ceb0627a7a85e | 1309d2afc19cdb3bc8ac017181edfc4c43914027 | refs/heads/master | 2022-04-01T13:42:35.416005 | 2019-11-14T18:07:46 | 2019-11-14T18:07:46 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 146 | puml | @startuml
class TestCase {
- String input
- String expectedResult
+ String : getInput()
+ String : getExpectedResult()
}
@enduml
| false | true | false | false | class |
8ef0020729d0c7243b5ce16ee6470d751d5583f5 | cc6b5940d80553bf8a178e8f3108167945fcfb12 | /kie-pmml-trusty/RuntimeInterpreted.puml | cc1dcfa5bef3f98fc5c9e2710c0b2dfb4ddf8b42 | [
"Apache-2.0"
] | permissive | yesamer/drools | f0f9889f212a1becb1144ed704e58649f2555bcd | 92b5f4e57755bfd1f4e52af34dfcbf0d608f33c9 | refs/heads/master | 2023-07-06T14:50:31.161516 | 2023-06-27T01:00:28 | 2023-06-27T01:00:28 | 185,600,193 | 0 | 0 | Apache-2.0 | 2022-02-15T11:22:48 | 2019-05-08T12:19:09 | Java | UTF-8 | PlantUML | false | false | 271 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
participant Runtime
participant Assembler
participant Compiler
Runtime -> Assembler: search model
Assembler -> Compiler: instantiation
Compiler -> Assembler: instances
Assembler -> Runtime: instances
@enduml
| false | true | false | false | sequence |
8b932b3a10e48e740f0a5a3ffca4e6c4280cdd0f | d6374fe9363a41031c51eb622cb0cb5e75b78380 | /website/versioned_docs/v1.0.1/technical/central-event-processor/assets/diagrams/sequence/seq-event-9.1.0.plantuml | d01340e1fecbb2c0d9b6830bd1ad21192ec71bbc | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | mojaloop/documentation | 18a1e58443956b9c718f5f85590f652f803f4748 | 6ad904da0293bb259bd9f5140bcecd719d8c8024 | refs/heads/master | 2023-07-26T17:13:14.811484 | 2023-06-26T15:18:57 | 2023-06-26T15:18:57 | 170,135,923 | 24 | 98 | NOASSERTION | 2023-09-01T14:57:33 | 2019-02-11T13:45:44 | JavaScript | UTF-8 | PlantUML | false | false | 3,492 | plantuml | /'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Samuel Kummary <sam@modusbox.com>
--------------
******'/
@startuml
' declate title
title 9.1.0. Event Handler Placeholder
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistance Store
' declare actors
control "Event Handler Placeholder" as EVENT_HANDLER
box "Event Handler Placeholder" #LightGray
participant EVENT_HANDLER
end box
collections "Event-Topic" as TOPIC_EVENTS
' start flow
activate EVENT_HANDLER
group Event Handler Placeholder
EVENT_HANDLER -> TOPIC_EVENTS: Consume Event message \n <color #FF0000><b>Error code:</b> 2001 </color>
note right of EVENT_HANDLER #yellow
Message:
{
from: <transferHeaders.FSPIOP-Source>,
to: <transferHeaders.FSPIOP-Destination>,
type: application/json,
content: {
headers: <transferHeaders>,
payload: <transferMessage>
},
metadata: {
event: {
id: <uuid>,
type: INFO,
action: AUDIT,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
note right of EVENT_HANDLER #LightGray
The type would be an ENUM with values:
[INFO, DEBUG, ERROR, WARN, FATAL, TRACE]
Possible values for "action" would be
[AUDIT, EXCEPTION]
The event messages can be handled based on the values of these two variables
(when the placeholder is extended).
end note
EVENT_HANDLER -> EVENT_HANDLER: Auto-commit \n <color #FF0000><b>Error code:</b> 2001 </color>
note right of EVENT_HANDLER #lightBlue
Currently events to only be published as part of the placeholder.
This can be evolved to add relevant functionality.
end note
activate TOPIC_EVENTS
deactivate TOPIC_EVENTS
end
deactivate EVENT_HANDLER
@enduml
| false | true | true | false | sequence |
aec3085f8765f939b2e2d9bbbff0b5e43cdb64bb | 69fe5a118b089ec8c3bae14c273fabe6f8907f89 | /doc/api-overview.puml | 0c5aa33593a29633a9a0258d0026bd6fe9334876 | [
"Apache-2.0"
] | permissive | flexiooss/poom-crons | c94fcebf9c513397a656b78a8b30cf4d1fc6875c | b7a20b9366b074a5a338921b31bb3eb8003d084e | refs/heads/master | 2023-09-04T05:36:06.247079 | 2023-09-01T06:12:48 | 2023-09-01T06:12:48 | 178,996,998 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,535 | puml | @startuml
participant "Client" as client
participant "Crontab API" as crontab
participant "Cronned API" as cronned
== Client schedules a task specification ==
client -> crontab: POST /account/crontab/ \n \
[task={url, body, schedulingSpec: {\n\
type: AT | EVERY\n\
minute, hours, dayOfWeek, dayOfMonth, dayOfYear\
\n\
}}]
activate crontab
alt task is valid
crontab -> crontab: stores task
client <-- crontab: 201 : [task]
else
client <-- crontab: 400 : [Error]
end
deactivate crontab
...
== Crontab triggers cronned API ==
crontab -> crontab: at fixed rate
activate crontab
loop stored task specifications : task
alt task.scheduledAt is triggerable
crontab -> cronned: POST task.url \n {poom-cronned-at, poom-cronned-task-id} [task.body]
activate cronned
crontab <-- cronned: 204
deactivate cronned
end
end
deactivate crontab
...
== Cronned Task is unscheduled when Cronned API invalidates call (with 410 Gone status) ==
crontab -> crontab: at fixed rate
activate crontab
loop stored task specifications : task
alt task.scheduledAt is triggerable
crontab -> cronned: POST task.url \n {poom-cronned-at, poom-cronned-task-id} [task.body]
activate cronned
crontab <-- cronned: 410 Gone
deactivate cronned
crontab -> crontab: remove task
end
end
deactivate crontab
@enduml | false | true | false | false | sequence |
fe747ceca18bf71cf68ebeee41c679237b8ca69c | 7d811be9253a8d44454d5cd6b3746de6169f9b01 | /src/user_migration_timeline.puml | e6b8b51d1dcaab63646c68f5e5b1f29db8c93f0c | [
"MIT"
] | permissive | ministryofjustice/ppud-alpha-technical-architecture | b6f8a68687d36640391dfaedd013383d4b836590 | 275c5bc83972c4bfb8d047fa6cb494ace88b020e | refs/heads/main | 2023-03-17T13:06:12.786855 | 2020-10-09T11:49:53 | 2020-10-09T11:49:53 | 585,090,926 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 356 | puml | @startuml
skinparam BackgroundColor #00000000
[*] --> MVP
MVP: Development
MVP --> Private : Enable UAT environment
Private: Test with UAT data
Private --> Public : Enable live environment\nand subset of Offenders
Public: Dual run and test with\nsome real offenders
Public --> Live : Enable all Offenders
Live: PPUD frontend retired
Live --> [*]
@enduml
| false | true | false | false | sequence |
7c1e7368af0989633e20a5c4441167d9e1a5530c | c12b521d26d8edcdf24f39d50762d9dd41c98f89 | /sequences/activateApp/activateApp.puml | f8f99f407e359c5bf53a4fb18545aaeeac08e21e | [] | no_license | cetlinB/docs | 854da14bf653509302a8184e74e7bd63647b416c | 08f4103eeecbafacd196119ddd501261b66dafb9 | refs/heads/master | 2020-08-16T19:56:09.004540 | 2019-10-16T08:08:36 | 2019-10-16T08:08:36 | 215,545,045 | 0 | 0 | null | 2019-10-16T12:39:59 | 2019-10-16T12:39:58 | null | UTF-8 | PlantUML | false | false | 1,496 | puml | @startuml
title DEPRECATED 12.10.19, ARCHIVE VERSION
actor "App User" as AU
participant ":Launcher" as CLa
participant ":Machine Manager" as CM
participant ":Cluster" as CC
participant ":Logger" as CLo
participant ":Payments" as CP
AU -> CLa : GET /launcher/applications/{id}
activate CLa
CLa -->> AU : 200 ComputationApplication
deactivate CLa
AU -> CLa : POST /launcher/computations (json)
activate CLa
CLa -> CM : POST /machine-manager/computations (json)
activate CM
CM -> CP : POST /payments/computations/{id} (json)
activate CP
CP -->> CM : 201
deactivate CP
CM ->> CC : POST /cluster/computations (json)
activate CC
CM -->> CLa : 201 id
deactivate CM
CLa -->> AU : 201 id
deactivate CLa
CC -> CLo : POST /logger/computations/{id} (json)
activate CLo
CLo -->> CC : 201
deactivate CLo
loop
par
activate CM
CM -> CC : GET /cluster/status/computation
activate CC
CC -->> CM : List<ComputationInfo>
deactivate CC
CM -> CP : PATCH /payments/computations/{id} (json)
activate CP
CP -->> CM : 200
deactivate CP
deactivate CM
else
CC -> CLo : PATCH /logger/computations/{id} (json)
activate CLo
CLo -->> CC : 200
deactivate CLo
end par
break finished computing
CC ->> CM : PUT /machine-manager/computations/{id} (json)
activate CM
end break
end loop
CM -> CP : PATCH /payments/computation/{id} (json)
activate CP
CP -->> CM : 201
deactivate CP
deactivate CM
CC -> CLo : PUT /logger/computations/{id} (json)
activate CLo
CLo -->> CC : 200
deactivate CLo
deactivate CC
@enduml | false | true | false | false | usecase |
a325414aca4c30c3c9c58535361aed9465055784 | 90a64ec8bc53ed7de6e1838755b68b6bb6d51874 | /src/uml/disignCode/Comprehensive1.puml | 04ad03733b1c045b66ceed0719a766f34cc5c75d | [] | no_license | nomenofear/software_Design_Pattern_Experiment | 2733d33c9e796db7cc99b925c6403e7d9f7be912 | 34fb6f20806374b84d12c3adcba4644c24635a35 | refs/heads/main | 2023-04-14T09:11:13.031566 | 2021-05-02T07:36:36 | 2021-05-02T07:36:36 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 415 | puml | @startuml
'https://plantuml.com/class-diagram
class Star
class Proxv{
-star:Star
}
interface Employee{
+Show(s:String):String
}
Star--|>Employee
Proxv--|>Employee
Proxv-->Star
class substitute
abstract chou{
abstract show():void
}
substitute--|>chou
abstract class Decorator{
+ chou:chou
}
class ConcreteDecotator{
-xiu():String
}
ConcreteDecotator--|>Decorator
Decorator-->chou
Decorator--|>chou
@enduml | false | true | false | false | class |
9afcd10e62d974c782ebb53eb980316db00beb44 | 8a4057d8c754c93b16c13815b4f1b7c4b3251bb7 | /Docs/asynchronous-processing-command.puml | 525227fd5974c80f61d3aa6ae1cae708f8fd9a7f | [
"MIT"
] | permissive | sygnowskip/modular-monolith | 0cf414d84122e18277dadb4259ce25a0e1679997 | d02b570a1febd9b8ce4e7fc1ce2b333c65660e48 | refs/heads/master | 2022-03-11T22:44:48.018280 | 2022-02-06T18:12:06 | 2022-02-06T18:12:06 | 244,965,038 | 1 | 0 | MIT | 2022-02-06T18:12:07 | 2020-03-04T17:41:32 | C# | UTF-8 | PlantUML | false | false | 544 | puml | @startuml
Title "Asynchronous processing - react for domain events and execute action on different aggregate"
queue RabbitMQ
participant "Event handlers" as EventHandler
participant Command
participant Aggregate
database Database
EventHandler -> RabbitMQ : Reacts on event
EventHandler -> Command : Executes
== Transaction boundary ==
Command -> Aggregate : Apply change on
Aggregate -> Database : Update state
Aggregate -> Database : Publish domain events to Outbox
Aggregate -> Command : Returns result
== Transaction boundary ==
@enduml | false | true | false | false | sequence |
d93e2de6ade7cbcdcda5c84421879ea4762f7a1a | d53c664b6d04a51e2969e7447bc07ea58e066186 | /UML/ParkhausKundeActivity.puml | d480b50aa5d570ef6b4d85f46234966f8f53d191 | [] | no_license | axki12/ParkhausSE1 | 488b651e43aafc22f6f1497b8705ca103a8ba529 | e1600ae1e42ab18752ad0012f23a8f368f7c3bac | refs/heads/master | 2022-12-27T22:28:25.714929 | 2020-10-06T14:51:20 | 2020-10-06T14:51:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 270 | puml | @startuml
(*)if "" then
--> [Kunde fährt rein] "Kunde zieht ein Ticket"
--> Kunde parkt
if "Kunde will Ticket bezahlen"
--> [Bar] "Kunde zahlt Bar"
--> Kunde fährt raus
else
--> [mit Kart] "Kunde zahlt mit Karte"
endif
--> Kunde fährt raus
-->(*)
else
-->(*)
@enduml | false | true | true | false | activity |
4e0ccbf8929aff5759909712c7013a6a6fc33b7d | 5eefa5b832f98a2890f6253b349f53ec75bbc6d0 | /tests/net.sourceforge.plantuml.jdt.tests/src/net/sourceforge/plantuml/jdt/test/ClassWithoutMembers.java.plantuml | 739131392b5a3247fb86e3dc7a35ae02985ffe03 | [] | no_license | hallvard/plantuml | 46d21a7b9ec3293ef17e5df9f8d5aca6c3502eb4 | 903a99cf2ddcd8d3f15a94651f519e4539a64428 | refs/heads/master | 2023-07-28T15:35:59.470916 | 2023-07-19T13:17:47 | 2023-07-19T13:26:29 | 1,220,963 | 216 | 61 | null | 2023-04-19T12:20:08 | 2011-01-04T21:53:29 | Java | UTF-8 | PlantUML | false | false | 111 | plantuml | @startuml
class ClassWithoutMembers [[java:net.sourceforge.plantuml.jdt.test.ClassWithoutMembers]] {
}
@enduml
| false | true | false | false | class |
f25acfb14fbfefa9cc0122286c5b3003a3c14ef4 | 54a824e79d8ff25cf98655bbd31ba593124a5bbf | /Documentation/DataDiagram.plantuml | 5378ab3348f7ac019abb8057fa625819b17fe3e6 | [] | no_license | simonmartyr/throwaway-conditional-associations | b0ccbb4f210a99c8c170605a4b638cdcd1f37947 | 97e16830d83f914038c504c9e650c2d8aff329c8 | refs/heads/main | 2023-04-19T07:43:05.199591 | 2021-04-29T14:57:37 | 2021-04-29T14:57:37 | 357,961,256 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 384 | plantuml | @startuml
class Employee {
int Id
String Name
String Age
}
class Contract {
int Id
DateTime StartDate
DateTime EndDate
Bool Active
}
class Secret {
int Id
String Secret
bool IsKnown
}
class Pet {
int Id
String Name
int Age
bool Favorite
}
Employee ||-|| Contract : Active Contract
Employee ||--|| Secret : Dark Secret
Employee ||--|{ Pet : Pets
@enduml | false | true | false | false | class |
f1fab1e9ee45f3deff71ff53354aea88adc357a1 | 42f4bd432da377cb5967cc743e7093b18fab26bf | /src/main/resources/documentation/umlCode/all.puml | 61881e97d277142d84c58e1696606ac70a341384 | [] | no_license | felipeandradevalenzuela/desafio-testing | 9329610ca0d33dc411a2e1fb0414c98e4d039a73 | 9ac477e8c8249fc993929df0eeb70a954efb1595 | refs/heads/main | 2023-05-31T00:52:37.278184 | 2021-06-18T16:33:23 | 2021-06-18T16:33:23 | 378,019,258 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,026 | puml | @startuml Diagramas
package controller <<Folder>> {
package advice <<Folder>> {
class ExceptionControllerAdvice {
+ handleDistrictNotFoundException(NoSuchFieldException e)
+ MethodArgumentNotValidExceptionHandler(MethodArgumentNotValidException e)
+ HttpMessageNotReadableExceptionHandler(HttpMessageNotReadableException e)
}
}
class CalculateRestController {
- ICalculateService calculateService
+ calculateTotalSquareFeet(HouseDTO house)
+ calculatePrice(HouseDTO house) throws NoSuchFieldException
+ getBiggestRoom(HouseDTO house)
+ calculateSquareFeetPerRoom(HouseDTO house)
}
}
package dto <<Folder>> {
package error <<Folder>> {
class ErrorDTO {
- String name;
- String message;
- LocalDateTime timestamp;
}
}
package response <<Folder>> {
class HouseResponseSquareFeetPerRoomDTO {
- List<RoomSquareFeetDTO> roomsSquareFeet;
}
class HouseResponseTotalSquareFeetDTO {
- double squareFeet;
}
class HouseResponseValueDTO {
- Double value;
}
}
class HouseDTO {
- String propName
- String districtName
- double districtPrice
- List<RoomDTO> rooms
}
class RoomDTO {
- String name
- double width
- double length
}
class RoomSquareFeetDTO {
}
}
package entities <<Folder>> {
class District {
- String name;
- Double price;
}
class House {
- String propName;
- String districtName;
- double districtPrice;
- List<RoomDTO> rooms;
}
class Room {
- String name;
- double width;
- double length;
}
}
package repository <<Folder>> {
interface IDistrictRepository {
+ getDistrictByName(String name) throws NoSuchFieldException
}
class DistrictRepository implements IDistrictRepository {
- List<District> districts
- String classPath
+ getDistrictByName(String name) throws NoSuchFieldException
- loadFromDB() throws IOException
}
}
package Service <<Folder>> {
interface ICalculateService {
+ calculateTotalSquareFeet(HouseDTO house)
+ calculatePrice(HouseDTO house) throws NoSuchFieldException
+ getBiggestRoom(HouseDTO house)
+ calculateSquareFeetPerRoom(HouseDTO house)
}
class CalculateServiceImpl implements ICalculateService {
+ calculateTotalSquareFeet(HouseDTO house)
+ calculatePrice(HouseDTO house) throws NoSuchFieldException
+ getBiggestRoom(HouseDTO house)
+ calculateSquareFeetPerRoom(HouseDTO house)
- getSquareFeet(RoomDTO room)
- calculateRoomSquareFeet(HouseDTO house)
- calculateBiggestRoom(HouseDTO house)
- priceByDistrict(String districtName) throws NoSuchFieldException
}
}
@enduml | false | true | false | false | class |
8d291fa36e113975460467c0033dcf80d08bcb86 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Runtime/TMP_Compatibility.puml | a558fca37a07b94cc8b19e23e4c1d07d49f8ccb1 | [] | 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 | 358 | puml | @startuml
class TMP_Compatibility <<static>> {
+ {static} ConvertTextAlignmentEnumValues(oldValue:TextAlignmentOptions) : TextAlignmentOptions
}
enum AnchorPositions {
TopLeft,
Top,
TopRight,
Left,
Center,
Right,
BottomLeft,
Bottom,
BottomRight,
BaseLine,
None,
}
TMP_Compatibility +-- AnchorPositions
@enduml
| false | true | false | false | class |
cdeaef97e16ae98dc75163eb35094032a61586fa | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1131399/sprint4/chat_app_analysis_send.puml | 1b30629753778e770a75942aaeda1bb795ad20aa | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,114 | puml | @startuml doc-files/chat_app_analysis_send.png
actor User
participant "<<analysis>>\nChatAppUI" as ChatAppUI
participant "<<analysis>>\nChatAppController" as ChatAppController
participant "<<analysis>>\nUdpService" as UdpService
participant "<<analysis>>\nTcpService" as TcpService
participant "<<analysis>>\nVolt.UdpClient" as UdpClient
participant "<<analysis>>\nVolt.UdpServer" as UdpServer
participant "<<analysis>>\nVolt.TcpClient" as TcpClient
User->ChatAppUI: open chat option
ChatAppUI->ChatAppController: new()
activate ChatAppController
ChatAppController->UdpService: new()
UdpService->UdpServer:server(int localPort, int targetPort)
ChatAppController->UdpService: getInstancesOnNetwork()
ChatAppController->TcpService: new()
ChatAppController->TcpService: sendMessage(String target, String message)
TcpService->TcpClient:client(String target, String message)
User->ChatAppUI: close chat option
ChatAppUI->ChatAppController: changeToOffline()
ChatAppController->UdpService: sendOffline()
ChatAppController->UdpService: stop()
ChatAppController->TcpService: stop()
deactivate ChatAppController
@enduml | false | true | false | false | usecase |
3c5729d03fb20094ce554f25980be2cd84b29c43 | b159644e223625b3804f1d6256abbf69d4c40a79 | /coreJava/BlockingQueue.puml | 18c9d5f38ea5983bb88b79f3eb86f343275059da | [
"Apache-2.0"
] | permissive | arthur-dy-lee/arthur-dy-lee-note | 488eb3242688e400dd77a8989d8ad9c2a227af37 | 07fec6439257651305eec21dfc36a40d3c29165b | refs/heads/master | 2023-08-08T14:56:45.290209 | 2023-08-07T01:49:22 | 2023-08-07T01:49:22 | 159,033,742 | 7 | 3 | Apache-2.0 | 2023-04-20T03:15:52 | 2018-11-25T13:20:58 | HTML | UTF-8 | PlantUML | false | false | 970 | puml | @startuml
interface Iterable
interface Collection
abstract class AbstractCollection
interface Queue
class LinkedBlockingQueue
abstract class AbstractQueue
interface BlockingQueue
Iterable <|-- Collection
Collection <|.. AbstractCollection
Collection <|-- Queue
AbstractCollection <|-- AbstractQueue
Queue <|.. AbstractQueue
Queue<|-- BlockingQueue
AbstractQueue <|.. LinkedBlockingQueue
BlockingQueue <|.. LinkedBlockingQueue
Serializable <|.. LinkedBlockingQueue
AbstractQueue <|-- ArrayBlockingQueue
BlockingQueue <|.. ArrayBlockingQueue
Serializable <|.. ArrayBlockingQueue
AbstractQueue <|-- PriorityBlockingQueue
BlockingQueue <|.. PriorityBlockingQueue
Serializable <|.. PriorityBlockingQueue
AbstractQueue <|-- SynchronousQueue
BlockingQueue <|.. SynchronousQueue
Serializable <|.. SynchronousQueue
Iterable : iterator()
Queue : boolean add(E e)
Queue : boolean offer(E e)
Queue : E remove()
Queue : E poll()
Queue : E element()
Queue : E peek()
@enduml
| false | true | false | false | class |
01dd02368ac81e3e38b2783572222403e6795281 | 06132bb306986359c8958effdb12134da4aa9a23 | /spring-cloud-design-pattern/behavior-memento-pattern/src/main/resources/static/diagram.puml | 8b7162385974d206a230ec6fec274b64fa9c0801 | [] | no_license | sunnyzhy/Design-pattern | 1fe797d2af0e102be63704aad5a5e3a3d8feb5a9 | 665b5cde412e965665469af1b5011c6c280ea7d0 | refs/heads/master | 2023-07-01T15:50:37.005870 | 2023-06-13T09:33:49 | 2023-06-13T09:33:49 | 55,023,406 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 670 | puml | @startuml
Originator *-- Memento
Caretaker o-- Memento
class Memento {
-String state
+Memento(String state)
+void setState(String state)
+String getState()
}
class Originator {
-String state
+void setState(String state)
+String getState()
+Memento createMemento()
+void restoreMemento(Memento m)
}
class Caretaker {
-Memento memento
+void setMemento(Memento m)
+Memento getMemento()
}
note as N
public Memento createMemento()
{
return new Memento(state);
}
end note
note as M
public void restoreMemento(Memento m)
{
this.setState(m.getState());
}
end note
Originator .. N
Originator .. M
@enduml | false | true | false | false | class |
53814940ad15ec9172ed2744e4d231e7d824a95c | c6471b445c6b2e9587818e1245de301b6f37d694 | /uml/sign-up-class.puml | 89bd20c5828db786eea23287bddfdf296a3eba4d | [] | no_license | punchat/docs | 0d483f3fa83de4c8fe100d9124666a824d5a239d | b225b728576787f84730d9c6f3b730351a1a92a0 | refs/heads/master | 2020-03-08T05:40:09.705149 | 2018-05-13T11:40:43 | 2018-05-13T11:40:43 | 127,953,256 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,130 | puml | @startuml
class WorkspaceInvitation {
String email
}
note top of WorkspaceInvitation
when admin invites user
(POST .../am/workspace/members)
end note
class WorkspaceEmailValidation {
String email
}
note top of WorkspaceEmailValidation
when user checks email
(PUT .../am/workspace/members/check)
end note
class WorkspaceEmailValidationResult {
String email
EmailValidationResult result
}
note top of WorkspaceEmailValidationResult
response of (PUT .../am/workspace/members/check)
end note
enum EmailValidationResult {
VALID, INVALID
}
class WorkspaceAccessCodeValidation {
String email
String code
}
class WorkspaceAccessCodeValidationResult {
String email
String code
AccessCodeValidationResult result
}
enum AccessCodeValidationResult {
VALID, INVALID, OUTDATED
}
class NewAccessCodeRequest {
String email
}
note top of NewAccessCodeRequest
Request to get new access code in email
(PUT .../am/workspace/codes/request)
end note
class WorkspaceRegistration {
String email
String username
String password
String code
}
@enduml | false | true | false | false | class |
c0f8f2bd09e9f3a76efaef3f672cf20eff41bbde | d046d1d89b21d4e30f6ca382c15de6da3941395e | /uml/domain-model/final-state.puml | 32ce0b162612b8c0494b992a0469d08a5d0b1762 | [] | no_license | hombrenieve/klondike_rup | fff8cbc09e8b2a647b6f4c71111960b2a8fe3714 | cb8e1bbcb24d0750dd93f6048ed840d7552dc145 | refs/heads/master | 2020-06-04T02:15:00.755154 | 2019-06-17T09:59:09 | 2019-06-17T09:59:09 | 191,829,982 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 739 | puml | @startuml
allow_mixing
object Juego
object Mazo
object Descarte
object Objectivo
object Trabajo_N {
- Carta[N]
}
object "Carta" as carta1 {
- int numero
- Palo palo
- Estado estado : "Boca arriba"
}
object "Carta" as carta3 {
- int numero
- Palo palo
- Estado estado
}
object "Carta" as carta4 {
- int numero
- Palo palo
- Estado estado
}
object "Carta" as carta5 {
- int numero
- Palo palo
- Estado estado : "Boca abajo"
}
carta1 "0" <-down- "1" Trabajo_N
carta1 <-[hidden]left- carta
Trabajo_N "1" -> "0" carta
Trabajo_N "7" <-down- "1" Juego
Descarte "1" <-- "1" Juego
Objectivo "4" <-- "1" Juego
Mazo "1" <-- "1" Juego
carta3 "0" <- "1" Descarte
carta4 "13" <-- "1" Objectivo
carta5 "0" <-- "1" Mazo
@enduml | false | true | false | false | object |
9f64a88f74cd88daca77b4f8a4a4bf66ea580310 | 52328d877b6d76dbb3b9f740c48769a3fbf3a1b2 | /samples/TwoModeSample.puml | 64f2ccb45c8d6ec315700a163ea57baa9b303a69 | [
"MIT"
] | permissive | larryr/UsePlantUML | c59b83eefaf608ce1033f06c2881aa12f5a99226 | 9c249b76af50a577ee14f9a78522fecb18e9e139 | refs/heads/master | 2023-03-27T18:54:29.664157 | 2021-03-12T21:55:55 | 2021-03-12T21:55:55 | 263,158,030 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,562 | puml | @startuml Two Mode Sample - Normal
!pragma revision 1
!define AzurePuml https://raw.githubusercontent.com/larryr/UsePlantUML/master/dist/Azure
!include AzurePuml/AzureCommon.puml
'** uncomment the following for a simplified view of the components:
'** no bordering box; no descriptions.
'!include AzurePuml/AzureSimplified.puml
!include AzurePuml/Analytics/AzureEventHub.puml
!include AzurePuml/Compute/AzureFunction.puml
!include AzurePuml/Databases/AzureCosmosDb.puml
!include AzurePuml/Storage/AzureDataLakeStorage.puml
!include AzurePuml/Analytics/AzureStreamAnalytics.puml
!include AzurePuml/InternetOfThings/AzureTimeSeriesInsights.puml
!include AzurePuml/Identity/AzureActiveDirectoryB2C.puml
!include AzurePuml/DevOps/AzureApplicationInsights.puml
LAYOUT_LEFT_RIGHT
AzureEventHub(rawEventsHubAlias, "Raw Event Hub", "PK: Medallion HackLicense VendorId; 3 TUs")
AzureDataLakeStorage(datalakeAlias, "Data Lake", "GRS")
AzureStreamAnalytics(streamAnalyticsAlias, "Aggregate Events", "6 SUs")
AzureFunction(stateFunctionAlias, "State Processor", "C#, Consumption Plan")
AzureEventHub(aggregatedEventsHubAlias, "Aggregated Hub", "6 TUs")
AzureCosmosDb(stateDBAlias, "State Database", "SQL API, 1000 RUs")
AzureTimeSeriesInsights(timeSeriesAlias, "Time Series", "2 Data Processing Units")
rawEventsHubAlias ----> datalakeAlias
rawEventsHubAlias --> streamAnalyticsAlias
rawEventsHubAlias ---> stateFunctionAlias
streamAnalyticsAlias --> aggregatedEventsHubAlias
aggregatedEventsHubAlias --> timeSeriesAlias
stateFunctionAlias --> stateDBAlias
@enduml | false | true | false | false | uml-unknown |
28acf98b6cb922a956144fb9e8c79cb3cb5fbc3a | c83a04a4fbab368af268b855e158be1d0098ff30 | /puml/Sequence-RqP-Get-Resource-Proxy.puml | 813621ba24c55fae19931db6718759a95a1964cc | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | ForgeRock/frdp-uma-resource-server | f2ad7346cab73d87f2777e4c55475498a4d0eb54 | d0c2d72aa1f1c96cf5dce3f03c7a74c6ff075130 | refs/heads/master | 2023-01-28T20:03:04.395299 | 2021-08-19T20:22:27 | 2021-08-19T20:22:27 | 228,416,835 | 10 | 2 | MIT | 2023-01-23T10:54:18 | 2019-12-16T15:26:09 | Java | UTF-8 | PlantUML | false | false | 4,093 | puml | @startuml
title RqP - Get Resource Proxy
hide footbox
actor "Resource Owner\n(RO)" as RO
actor "Requesting Party\n(RqP)" as RQP
box "Client Application (CA)\n<<Custom Application>>" #palegreen
participant "User Interface" as CAUI
end box
box "UMA Client Proxy\n<<Custom Service>>" #antiquewhite
participant "Proxy API" as CLIENTPROXY
end box
box "Resource Server (RS)\n<<Custom Application>>" #peachpuff
participant "REST API" as RSREST
database "Resource" as RSRESOURCE
database "Credential" as RSCRED
end box
box "Authorization Server (AS)\nForgeRock Access Manager" #antiquewhite
participant "AM API" as AMREST
participant "UMA API" as UMAREST
participant "OAuth API" as OAUTHREST
end box
box "Content Server (CS)\n<<Custom Application>>" #paleturquoise
participant "REST API" as CSREST
database "Data" as CSDATA
end box
RO->RQP: Resource Id
RQP-->RO
RQP->AMREST: Authenticate
activate AMREST
AMREST-->RQP: Authenticated (SSO Token)
deactivate AMREST
activate RQP
RQP->CAUI: Resource Id
deactivate RQP
activate CAUI
CAUI->CLIENTPROXY: GET /share/resources/{id}\n?scopes=meta+content\n(SSO Token)
deactivate CAUI
activate CLIENTPROXY
CLIENTPROXY->RSREST: GET /share/resources/{id}\n?scopes=meta+content\nHeader: x-frdp-ssotoken
deactivate CLIENTPROXY
activate RSREST
RSREST->RSRESOURCE: Get _id
deactivate RSREST
activate RSRESOURCE
RSRESOURCE-->RSREST: meta data
deactivate RSRESOURCE
activate RSREST
RSREST->RSCRED: Get PAT
deactivate RSREST
activate RSCRED
RSCRED-->RSREST: PAT
deactivate RSCRED
activate RSREST
RSREST->UMAREST: POST /am/uma/permission_request\nresource_id + scopes
note left: Get permission ticket for the\nresource and scope
deactivate RSREST
activate UMAREST
UMAREST-->RSREST: Permission Ticket
deactivate UMAREST
activate RSREST
RSREST->CLIENTPROXY: 401: Permission Ticket + AS_URI
deactivate RSREST
activate CLIENTPROXY
CLIENTPROXY->OAUTHREST: POST /am/oauth2/authorize?response_type=code&scope=openid\nHeader: ssotoken
note left: Get authorization code\nusing SSO token
deactivate CLIENTPROXY
activate OAUTHREST
OAUTHREST->OAUTHREST: Validate SSO session
OAUTHREST->CLIENTPROXY: Authorization code
deactivate OAUTHREST
activate CLIENTPROXY
CLIENTPROXY->OAUTHREST: POST /am/oauth2/access_token?grant_type=authorization_code&code={code}\nHeader: Authorization: Basic: client_id + client_secret
note left: Get claim token for the\nRequesting Party (RqP)
deactivate CLIENTPROXY
activate OAUTHREST
OAUTHREST->OAUTHREST: Validate Authz Code\nBasic Auth
OAUTHREST-->CLIENTPROXY: claim token
deactivate OAUTHREST
activate CLIENTPROXY
CLIENTPROXY->OAUTHREST: POST /am/oauth2/access_token\ngrant_type=urn:ietf:params:oauth:grant-type:uma-ticket\nscope=..., ticket=..., claim_token=..., claim_token_format=...
note left: Get Requesting Party Token (RPT)\nusing the permission ticket\nand claim token
deactivate CLIENTPROXY
activate OAUTHREST
OAUTHREST->OAUTHREST: Validate Permission Ticket\nClaim Token
OAUTHREST-->CLIENTPROXY: Requesting Party Token (RPT)
deactivate OAUTHREST
activate CLIENTPROXY
CLIENTPROXY->RSREST: GET /share/resources/{id}\nscopes=meta+content\nHeader: x-frdp-ssotoken and x-frdp-rpt
note left: Re-Submit request for Resource\nUsing RPT
deactivate CLIENTPROXY
activate RSREST
RSREST->OAUTHREST: GET /am/oauth2/tokeninfo\naccess_token=...
note left: Validate the Requesting Party Token (RPT)
deactivate RSREST
activate OAUTHREST
OAUTHREST-->RSREST: 200: Ok
deactivate OAUTHREST
activate RSREST
RSREST->RSCRED: Get _id
deactivate RSREST
activate RSCRED
RSCRED-->RSREST: meta data
deactivate RSCRED
activate RSREST
RSREST->CSREST: GET: /content/{_id}
note left: Get the data
deactivate RSREST
activate CSREST
CSREST->CSDATA: Read _id
deactivate CSREST
activate CSDATA
CSDATA-->CSREST: data
deactivate CSDATA
activate CSREST
CSREST-->RSREST: data
deactivate CSREST
activate RSREST
RSREST-->CLIENTPROXY: data
deactivate RSREST
activate CLIENTPROXY
CLIENTPROXY->CAUI: data
deactivate CLIENTPROXY
activate CAUI
CAUI->RQP: data
deactivate CAUI
@enduml
| false | true | false | false | usecase |
a33b68ae57d4c5e65d42f1777d62a603c56a481f | 6400335b96d56ac2c651c30af1d0ebed2ed34b7c | /03-Hotel/20201-03/cu01 - noter-une-reservation/4-rdcu-1-creerNouvelleReservation.plantuml | e29e63f0c69a89b855af18e5d8c226b9e31b5ac9 | [] | no_license | ChristopheTremblay/LOG210-exercices | 43f02513fcaabee8e62363b0b8604500b587815d | e5dee4533a3d69be3b1209edd000a062b6806181 | refs/heads/master | 2023-01-19T21:08:48.080941 | 2020-11-16T16:35:03 | 2020-11-16T16:35:03 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 317 | plantuml | @startuml
skinparam Style strictuml
actor Commis #green
title rdcu creerNouvelleReservation
note left of ControleurNoterReservation: Controleur de session
--> ControleurNoterReservation : creerNouvelleReservation()
note right: créateur par défault
ControleurNoterReservation --> Reservation ** : create()
@enduml
| false | true | true | false | sequence |
8e5171ba565517aaa23473c4b1448a04c4669e45 | 588ddcad5463f5ff008f5d3f82c4f6018b043a6a | /diagrams/0-component-diagram.puml | 03da2df9c612e0f4d61693b7dfcb095b5be66938 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | SoPraFS20-Group16/sopra-fs20-group-16-client | 246de75661afd2d4398ccee780a289f7ffa18920 | 833d6c7534e7a2f93148359d4bc8f4e4af733fbb | refs/heads/master | 2021-03-26T15:28:29.894863 | 2020-05-24T16:38:47 | 2020-05-24T16:38:47 | 247,717,650 | 1 | 0 | Apache-2.0 | 2021-01-05T22:16:52 | 2020-03-16T14:03:01 | JavaScript | UTF-8 | PlantUML | false | false | 287 | puml | @startuml
skinparam componentStyle uml2
[User] -down- UI
UI - [Client]
[Client] - REST
REST - [Server]
[Server] -down- DatabaseAccess
database "Database" {
DatabaseAccess -down- [CRUD\nDatabase]
}
package "External APIs"{
[Quote API] -- Server
[Map API] -- Server
}
@enduml | false | true | false | false | sequence |
5e04218aa67175619a10281417fe83b53f68da7d | 0505c7b9c7d04041d7545facc40dd29196eee9d2 | /Docs/C4-Containers.puml | 44eaf34529292f6b684fa2c34eb50526c118430e | [] | no_license | v-bodnar/Spartaaa | 3a61d890d8654e5c1b4c8a42e8328cd1c43c6e7c | 5a83c5b187dfb5c2917896bf0bfe2c394d514f5f | refs/heads/master | 2023-03-18T08:23:25.685552 | 2021-11-25T16:36:16 | 2021-11-25T16:36:16 | 253,110,684 | 0 | 1 | null | 2023-03-06T18:38:35 | 2020-04-04T22:29:21 | Java | UTF-8 | PlantUML | false | false | 714 | puml | @startuml(id=SpartacusApp)
scale max 1748x1240
title Spartacus - Containers
skinparam {
shadowing false
arrowColor #707070
actorBorderColor #707070
componentBorderColor #707070
rectangleBorderColor #707070
noteBackgroundColor #ffffff
noteBorderColor #707070
}
package "Spartacus" <<Software System>> {
rectangle 11 <<MongoDB>> #dddddd [
Database
--
MongoDB database
]
rectangle 8 <<Container>> #dddddd [
Spartacus Server
--
Spartacus server-side web
application, written in Java
]
rectangle 7 <<WebSocket, JS>> #dddddd [
Spartacus client
--
Spartacus client-side web
application, written in JS
]
}
8 .[#707070].> 11
7 .[#707070].> 8
@enduml
| false | true | false | false | sequence |
7c4e036f8e49a5d9db0a10739ba769579c5a5321 | 79b1afae05be893d0d860ad88e065a1fe3fe7717 | /creation/builder/uml/_example.puml | b458908b75c723c225ef7e5bd3abe2f65be79b27 | [] | no_license | danielleberre/pattern-repository | 5dd0c84147f35c9e22abfe30abd93b8cb51560f3 | 68eab140c40174e2fc1769f4b718f7528b440921 | refs/heads/master | 2020-04-30T14:20:09.435842 | 2019-03-25T13:07:03 | 2019-03-25T13:07:03 | 176,888,097 | 0 | 0 | null | 2019-03-21T07:00:12 | 2019-03-21T07:00:10 | null | UTF-8 | PlantUML | false | false | 1,165 | puml | @startuml
skinparam nodesep 75
skinparam ranksep 50
hide empty members
class NotificationSystem <<Director>> {
- Set<String> customers;
__
+ <<construct>> runCampaign(String, String)
- sendMessages(List<Message>)
}
NotificationSystem . MessageBuilder
interface Message <<Product>> {
+ {abstract} send()
}
interface MessageBuilder <<Builder>> {
+ {abstract} <<buildPart>> addRecipient(String)
+ {abstract} <<buildPart>> addContents(String)
+ {abstract} <<result>> assemble(): List<Message>
}
MessageBuilder . Message
class Email {
- String[] to
- String contents
__
+ send()
}
Message <|-- Email
class SMS {
- String to
- String contents
__
+ send()
}
Message <|-- SMS
class EmailBuilder <<ConcreteBuilder>> {
+ <<buildPart>> addRecipient(String)
+ <<buildPart>> addContents(String)
+ <<result>> assemble(): List<Message>
}
EmailBuilder . Email
MessageBuilder <|-- EmailBuilder
class SMSBuilder <<ConcreteBuilder>> {
+ <<buildPart>> addRecipient(String)
+ <<buildPart>> addContents(String)
+ <<result>> assemble(): List<Message>
}
SMSBuilder . SMS
MessageBuilder <|-- SMSBuilder
Email -[hidden]- SMS
@enduml
| false | true | false | false | class |
a3528f0c066fa16588f857722e192df944200650 | d68b1330ef8ce59c635f4692417a9192d5206942 | /server/src/no/ntnu/idi/apollo69server/uml/generated/entity_factories.plantuml | 2b3412ca6a970de6dbfa16b575a19bef4f06b6cc | [
"MIT"
] | permissive | GardSteinsvik/apollo-69 | 847f74b762383641db20214ff7b5281c9d63f130 | 96cbf617618075a54613112bc8c0b34215fd50f7 | refs/heads/master | 2021-02-12T20:21:06.214711 | 2020-04-27T16:02:37 | 2020-04-27T16:02:37 | 244,626,902 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,106 | plantuml | @startuml
title __ENTITY_FACTORIES's Class Diagram__\n
namespace no.ntnu.idi.apollo69server {
namespace game_engine {
namespace entity_factories {
class no.ntnu.idi.apollo69server.game_engine.entity_factories.AsteroidFactory {
- BASE_SPEED : int
- DAMAGE_OF_ASTEROID : float
- HP_OF_ASTEROID : float
- MAX_EXTRA_SPEED : int
+ create()
}
}
}
}
namespace no.ntnu.idi.apollo69server {
namespace game_engine {
namespace entity_factories {
class no.ntnu.idi.apollo69server.game_engine.entity_factories.ExplosionFactory {
{static} + create()
}
}
}
}
namespace no.ntnu.idi.apollo69server {
namespace game_engine {
namespace entity_factories {
class no.ntnu.idi.apollo69server.game_engine.entity_factories.GemFactory {
+ create()
- createCoinGem()
- createMeteoriteGem()
- createRubyGem()
- createStarGem()
- generalCreate()
}
}
}
}
namespace no.ntnu.idi.apollo69server {
namespace game_engine {
namespace entity_factories {
class no.ntnu.idi.apollo69server.game_engine.entity_factories.PowerupFactory {
+ createRandomPowerup()
- create()
}
}
}
}
namespace no.ntnu.idi.apollo69server {
namespace game_engine {
namespace entity_factories {
class no.ntnu.idi.apollo69server.game_engine.entity_factories.ShotFactory {
+ create()
}
}
}
}
namespace no.ntnu.idi.apollo69server {
namespace game_engine {
namespace entity_factories {
class no.ntnu.idi.apollo69server.game_engine.entity_factories.SpaceshipFactory {
+ create()
- getSpaceShipId()
}
}
}
}
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 |
1f9ee7ea0f6d37ca9b64a706719c4927c5ce71fb | 02a5712c8db6085cf7c6031b32f94288416471f5 | /docs/deployment-diagram.puml | 6c690256e3bb8eb2a2a1c6198acf8a21a03bb894 | [] | no_license | ndigrazia/apigw-jenkins-poc | 62fced7c6a0d479614b8d661a16d6ecba22e931c | d1afd88047024176b465948fde6b956ac5803950 | refs/heads/master | 2022-12-14T09:52:32.298444 | 2020-09-07T20:21:37 | 2020-09-07T20:21:37 | 293,617,173 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,166 | puml | @startuml
skinparam componentStyle uml2
actor "Developer/Release Manager" as dev
node " API Gateway Dashboard" {
[API] as APIGW
}
node "GitLab Repository" {
[API source project] as source
interface HTTP as HttpSource
source - HttpSource
dev --> HttpSource:Promote event
dev --> HttpSource:Stable release event
}
node "Repository Manager" as Repository {
[APIC image] as ApicImage
[Newman image] as NewmanImage
}
node "Docker engine" {
[APIC container] as APIC
[Newman container] as Newman
[Docker daemon] as daemon
daemon --> ApicImage:pull
daemon --> APIC:run
APIC --> source:clone
APIC --> APIGW:publish
daemon --> NewmanImage:pull
daemon --> Newman:run
Newman --> source:clone
Newman --> APIGW:execute Test Cases
}
node "Jenkins" as Jenkins {
[Promote Job] as promoteJob
promoteJob --> daemon:run APIC image
interface HTTP as HttpPromoteJob
promoteJob - HttpPromoteJob
source --> HttpPromoteJob:Promote event
[Stable release Job] as stableJob
stableJob --> daemon:run Newman image
interface HTTP as HttpStableJob
stableJob - HttpStableJob
source --> HttpStableJob:Stable release event
}
@enduml | false | true | false | false | sequence |
e05d4475ad20d0ca529bdbf45f6d05f38150ff9b | 469a2c961d57e86ada4ec80e0eb155093fbba14d | /documentation/doc_tree/pasta_design/images/PASTAplus_authentication_token.puml | 3f74a2f1c97533b252f989b153a0dc7e1227e72a | [] | no_license | PASTAplus/PASTA | 04e683a58c35cb0b1cb3af9a804b877d1f446161 | 3e05fe0454350ac8ebb85ebb6a5d976621f0da18 | refs/heads/master | 2023-09-01T06:03:20.642096 | 2023-08-23T20:01:58 | 2023-08-23T20:01:58 | 36,264,630 | 10 | 4 | null | 2023-03-31T21:00:43 | 2015-05-26T01:39:02 | Java | UTF-8 | PlantUML | false | false | 833 | puml | @startuml
actor User
participant client
participant gatekeeper
participant PASTA_service
entity LDAP
User->client: request
client->client: from_cache:external_auth_token
client->gatekeeper: request:external_auth_token
gatekeeper->gatekeeper: process_HTTP_header()
gatekeeper->gatekeeper: verify_signature(external_auth_token)
gatekeeper->gatekeeper: verify_ttl(external_auth_token)
gatekeeper->gatekeeper: get_user_id(external_auth_token):user_id
gatekeeper->gatekeeper: generate_token(user_id):internal_auth_token
gatekeeper->gatekeeper: request:add_cookie(internal_auth_token)
gatekeeper->PASTA_service: request:internal_auth_token
PASTA_service->PASTA_service: authorize(internal_auth_token)
PASTA_service->PASTA_service: do_service
PASTA_service->gatekeeper: response
gatekeeper->client: response
client->User: response
@enduml | false | true | false | false | usecase |
a97db513202b5659ea4a56006d092dc184dcf085 | c083168b4255af019262677c09ac0883d199b532 | /kapitler/media/uml-klasse-konspetet-bruker-registrering-som-eksempel.puml | 1778b0f3f6a99e16f741b2778cab75eee27a218c | [] | no_license | gra-moore/noark5-tjenestegrensesnitt-standard | 270f7088898ff0c5fa809b42297cfc56f829eeaa | 0c3936475ce40ab41793b61aee5c4dcdff9c791d | refs/heads/master | 2020-05-22T18:37:59.814751 | 2019-05-13T11:10:23 | 2019-05-13T11:10:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 566 | puml | @startuml
skinparam classAttributeIconSize 0
'FIXME dropped caption "class Fig01_Klasse"
class Arkivstruktur.Registrering < Arkivenhet > {
+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]
__ notes __
En registrering inneholder bare de metadata som
er nødvendig dersom dokumentet arkiveres uten
journalføring. Dette kalles også forenklet
registrering
}
@enduml
| false | true | true | false | class |
feef3a258b93a421b9a4a8adb31c98bbd71cfc14 | 22c062df90adff61becb66216348f35b57920adb | /UML/StructureDiagrams/ClassDiagram/diagrams/Animal.puml | 16a2a1d1e585e395dccd53c559cf49ec12777d5a | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 173 | puml | @startuml
skinparam classAttributeIconSize 0
class Animal
{
- name:string
# id: int
+ setName(string name):void
+ {abstract} move(): void
+ {static} count(): int
}
@enduml
| false | true | false | false | class |
9a243bd846f330f79208097fbb18d4a69671d0cc | 500285fe250dffdbd79697ec5f2fa314e2e476ff | /doc/uml/02_uc_authentication.puml | 7e49505086c872e7e332ce6b8c305b53c6c9cffe | [] | no_license | Zepmanbc/oc_dapython_pr8 | 47ac9745600a6c9357df4a7c613b656ac3b867c7 | 1009051f42688df06389f507d56eff1001507009 | refs/heads/master | 2020-04-30T02:31:27.009603 | 2019-04-29T20:59:49 | 2019-04-29T20:59:49 | 176,562,185 | 0 | 1 | null | 2019-04-13T15:53:12 | 2019-03-19T17:10:08 | CSS | UTF-8 | PlantUML | false | false | 299 | puml | @startuml 02_uc_authentication
title Diagramme de cas d'utilisation *Authentication*
package Authentication{
left to right direction
(Créer un compte) as CREATE
(Se connecter) as LOGIN
(Se déconnecter) as LOGOUT
}
actor user
user -- CREATE
user -- LOGIN
user -- LOGOUT
@enduml | false | true | true | false | usecase |
8cbd502d9e860fd4745805caf6e31b191ffc54e3 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyBusinessUnitAssociateDraft.puml | 6773ec6829c2d71fa8a8cd8d554f7d4241043a59 | [] | 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 | 478 | 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 MyBusinessUnitAssociateDraft [[MyBusinessUnitAssociateDraft.svg]] {
version: Long
customer: [[MyCustomerDraft.svg MyCustomerDraft]]
associateRoleAssignments: [[AssociateRoleAssignmentDraft.svg List<AssociateRoleAssignmentDraft>]]
}
@enduml
| false | true | false | false | class |
1f1087b9102100ddb1699ab81b21904a46bcc371 | f116748bcbf67b1f9603cf848fbdf43102906488 | /ท่องเท่ยว.puml | 7d1b6657654fcfb45a9a289567447d23c60550c7 | [] | no_license | Toopj/- | f48c2603e4fda196a2252090ab1e79e2117fcbd8 | 890f058b0eca6f9faa6104288db59455ef7ced34 | refs/heads/main | 2023-03-30T08:20:10.210714 | 2021-04-05T08:21:51 | 2021-04-05T08:21:51 | 354,766,416 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 482 | puml | @startuml
actor : Driver : as stu
(Travel) as UC1
(Check room) as UC2
(Check the car) as UC3
(Check route) as UC4
(No room) as UC6
(Not enough money) as UC7
(Broken car) as UC8
(Check route) as UC9
(No oil) as UC10
UC1 --|> UC2 : <<uses >>
UC1 --|> UC3 : <<uses >>
UC1 --|> UC4 : <<uses >>
UC2 <|-- UC6 : <<extends >>
UC2 <|-- UC7 : <<extends >>
UC3 <|-- UC8 : <<extends >>
UC3 <|-- UC10 : <<extends >>
UC4 <|-- UC9 : <<extends >>
stu --> UC1
@enduml | false | true | false | false | usecase |
81931e0a652f1dacab7140a83a4aa30282d8b4eb | 842ee4cf8171eba46be7fab064b2af0535897504 | /src/pers/mtx/prototype/uml.puml | e24090a3dbc1c627f1a58696d441212b98319f30 | [] | no_license | mgtoxd/DesignPattern | ad17f7a8fb130c1b378bbda66e2353b0c4964881 | 5d7f53ec2d9b862ec5628d4335bc451f0ef671bf | refs/heads/master | 2020-12-04T02:10:30.224776 | 2020-01-13T03:30:14 | 2020-01-13T03:30:14 | 231,566,324 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 72 | puml | @startuml
class Sheep{
name:String
age:int
}
Client ..> Sheep
@enduml | false | true | false | false | class |
6ea5b751f988b6d84d4fafbf65d785ea2ca178d7 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-class-arkiv.iuml | 7e1dbd46b1a2b5aaac02432bd9258dd97a4c3f08 | [] | 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 | 347 | iuml | @startuml
class Arkivstruktur.Arkiv <Arkivenhet> {
+tittel : string
+beskrivelse : string [0..1]
+arkivstatus : Arkivstatus [0..1] [1..1]
+dokumentmedium : Dokumentmedium [0..1] [1..1]
+oppbevaringssted : string [0..*]
+avsluttetDato : datetime [0..1]
+avsluttetAv : string [0..1]
+referanseAvsluttetAv : SystemID [0..1]
}
@enduml
| false | true | false | false | class |
04fa213e8f2ad7e8a1af479674ea3ff0e7836a85 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderEditAppliedMessagePayload.puml | 1221e2fa8339497a1b23fa850b8a49925ae42798 | [] | 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 | 523 | 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 OrderEditAppliedMessagePayload [[OrderEditAppliedMessagePayload.svg]] extends OrderMessagePayload {
type: String
edit: [[OrderEdit.svg OrderEdit]]
result: [[OrderEditApplied.svg OrderEditApplied]]
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
48db21c0ce0b4ba3954a513e608daad5f7759367 | 9fbd8b7623b3aadfb877c517fc38fcff9d3fc3d2 | /app/UML/SystemSequenceDiagram.puml | 60e757ecd44954aeb9ba1329405b04ce24020104 | [] | no_license | NotHamlet/Shannon-sGasTracker | ba90069a795c0be5c72f4dcf3e7a14b03200c0ec | 1d36470c00d1b4e79399ed3250cb530ffbe3254e | refs/heads/master | 2020-12-31T05:09:31.012479 | 2016-05-05T04:11:29 | 2016-05-05T04:11:29 | 57,092,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 729 | puml | @startuml
actor User
group SD001
User -> SGT: start
SGT --> User: splash screen displayed
User <-- SGT: display Service Log
group Create New Gas Entry
User -> SGT: odometer reading
User -> SGT: gallons purchased
User -> SGT: price per gallon
User -> SGT: notes
SGT --> User: creation confirmation
end
group Create New Service Entry
User -> SGT: odometer reading
User -> SGT: service type
User -> SGT: notes
SGT --> User: creation confirmation
end
group Create New Miscellaneous Entry
User -> SGT: odometer reading
User -> SGT: miscellaneous information
SGT --> User: creation confirmation
end
group Delete Log Entry
User -> SGT: select log entry
User -> SGT: delete entry
SGT --> User: delete confirmation
end
end
@enduml | false | true | false | false | sequence |
3c4bd79195a3b633f3c64f70a2b7d4285ab3f36b | 7041d4eab20296045d22e31c56211bc84b17da1c | /docs/ModifierDevoir/DSS_ModifierDevoir.puml | 870c4f007dfade5bcdf62050bb37eb5fb6d89f3d | [] | no_license | nerdz88/SGA-TS | ff97ce5cd5c78de97a851e80e0c948f7552b0f2c | 608d0748ff5ceff47ff75a9053cc1b5fee061df9 | refs/heads/main | 2023-07-09T19:54:11.262264 | 2021-07-28T17:39:07 | 2021-07-28T17:39:07 | 397,959,207 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 532 | puml | @startuml DSS_ModifierDevoir
title DSS modifierDevoir
hide footbox
actor ":Enseignant" as professeur
participant ":Systeme" as systeme
professeur -> systeme : recupererUnDevoir(idEspaceCours: number,\nIdDevoir: number)
professeur <-- systeme : détails du devoir
professeur -> systeme : modifierDevoir(\nidEspaceCours: number,\nIdDevoir: number,\nnom: String\ndescription : String,\nnote maximale : number,\ndateDeDebut : String,\ndateDeFin : String,\nvisible : boolean)
systeme --> professeur : détails du devoir modifié
@enduml | false | true | true | false | usecase |
a32b66858fa2bda1e3e3c5963a32876ce761fa07 | 4bf0b7532a42a4d588b938ba926a8d0e8ff47af6 | /docs/diagrams/database-diagram.puml | 240686dfa914cbd5881083c49c6adee686fdcad0 | [
"Apache-2.0"
] | permissive | vikvorona/stock-exchange-data-collector | fd5987186b1d9c8cf87a8b6bf852f89eeac8d777 | 5d41cb23f1814799ca44d0ff83bda285c24f1b06 | refs/heads/master | 2021-01-21T11:18:46.401110 | 2017-05-18T20:45:38 | 2017-05-18T20:45:38 | 91,736,099 | 0 | 0 | null | 2017-05-18T20:45:39 | 2017-05-18T20:44:15 | Java | UTF-8 | PlantUML | false | false | 2,704 | puml | @startuml
object SYSTEM_VARIABLE {
NAME
VALUE
}
object CODE_GENERIC {
CG_ID
TYPE
NAME
DESCRIPTION
ACTIVE_FLAG
}
object SOURCE_CENTER {
SC_ID
NAME
DESCRIPTION
LAST_UPDATE_TM
ACTIVE_FLAG
}
object SOURCE_CENTER_ENGINE {
SCE_ID
SC_ID
NAME
REGION_CG_ID
CURRENT_COB_SCEI
LAST_UPDATE_TM
ACTIVE_FLAG
}
SOURCE_CENTER o-- SOURCE_CENTER_ENGINE: SC_ID
CODE_GENERIC o-- SOURCE_CENTER_ENGINE: REGION_CG_ID
object SOURCE_CENTER_ENGINE_INSTANCE {
SCEI_ID
SCE_ID
BUSINESS_DATE
SCEI_STATE_CG_ID
SCEI_DETAIL_STATE_CD_ID
START_TM
END_TM
}
SOURCE_CENTER_ENGINE o-- SOURCE_CENTER_ENGINE_INSTANCE: SCE_ID
CODE_GENERIC o-- SOURCE_CENTER_ENGINE_INSTANCE: SCEI_STATE_CG_ID
object STAGE_FINAM_HISTORICAL {
SFH_ID
HASH
SYMBOL
SYM_ID
PER
DATE
TIME
OPEN
HIGH
LOW
CLOSE
VOLUME
ACTIVE_FLAG
ACTIVE_REASON
}
object STAGE_YAHOO_HISTORICAL {
SFH_ID
HASH
SYMBOL
SYM_ID
PER
DATE
TIME
OPEN
HIGH
LOW
CLOSE
VOLUME
ACTIVE_FLAG
ACTIVE_REASON
}
object SNAPSHOT_HISTORICAL {
SH_ID
SCEI_ID
BUSINESS_DATE
SYM_ID
PER
DATE
TIME
OPEN
HIGH
LOW
CLOSE
VOLUME
ACTIVE_FLAG
}
SOURCE_CENTER_ENGINE_INSTANCE o-- SNAPSHOT_HISTORICAL: SCEI_ID
STAGE_FINAM_HISTORICAL <-- SNAPSHOT_HISTORICAL
STAGE_YAHOO_HISTORICAL <-- SNAPSHOT_HISTORICAL
object STAGE_YAHOO_QUOTE {
SYQ_ID
HASH
SYMBOL
SYM_ID
AVG_DAILY_VOLUME
CHANGE
DAYS_LOW
DAYS_HIGH
YEAR_LOW
YEAR_HIGH
MARKET_CAPITALIZATION
LAST_TRADE_PRICE
DAYS_RANGE
NAME
VOLUME
STOCK_EXCHANGE
EX_ID
}
object STAGE_YAHOO_FXRATE {
SYX_ID
HASH
ID
NAME
RATE
DATE
TIME
ASK
BID
SYM_ID
}
object SNAPSHOT_QUOTE {
SQ_ID
SCEI_ID
BUSINESS_DATE
SYM_ID
AVG_DAILY_VOLUME
CHANGE
DAYS_LOW
DAYS_HIGH
YEAR_LOW
YEAR_HIGH
MARKET_CAPITALIZATION
LAST_TRADE_PRICE
DAYS_RANGE
NAME
VOLUME
}
object SNAPSHOT_FXRATE {
SX_ID
SCEI_ID
BUSINESS_DATE
ID
NAME
RATE
DATE
TIME
ASK
BID
SYM_ID
}
STAGE_YAHOO_QUOTE <-- SNAPSHOT_QUOTE
STAGE_YAHOO_FXRATE <-- SNAPSHOT_FXRATE
SOURCE_CENTER_ENGINE_INSTANCE o-- SNAPSHOT_QUOTE: SCEI_ID
SOURCE_CENTER_ENGINE_INSTANCE o-- SNAPSHOT_FXRATE: SCEI_ID
object SYMBOL {
SYM_ID
NAME
DESCRIPTION
MASTER_SYM_ID
EX_ID
LAST_UPDATE_TM
}
object EXCHANGE {
EX_ID
NAME
DESCRIPTION
COUNTRY
REGION_CG_ID
TIMEZONE_UTC_DIFF
LAST_UPDATE_TM
}
object SYMBOL_EXCHANGE {
SYM_ID
EX_ID
LAST_UPDATE_TM
}
SYMBOL <-- SYMBOL_EXCHANGE
EXCHANGE <-- SYMBOL_EXCHANGE
EXCHANGE <-- SYMBOL
SYMBOL <-- SNAPSHOT_QUOTE
SYMBOL <-- STAGE_YAHOO_QUOTE
SYMBOL <-- STAGE_FINAM_HISTORICAL
SYMBOL <-- STAGE_YAHOO_HISTORICAL
SYMBOL <-- SNAPSHOT_HISTORICAL
SYMBOL <-- STAGE_YAHOO_FXRATE
SYMBOL <-- SNAPSHOT_FXRATE
CODE_GENERIC o-- EXCHANGE
@enduml | false | true | false | false | class |
4b54db445c5324e9d040a9494b8a6d76b5dcfb54 | 007e19899fe9edf5fdb256827f52fff3e433127b | /app/src/main/java/com/example/arturo/flashcardsparse/FlashCard.puml | d3d5080b8fd32f8631fb68404fdebe7e2a1ab539 | [] | no_license | arturoaram/FlashCardsParse | 4b6864675ad1c1913f681c41c59ec7618c9f4086 | 503a2f0320907978f003496c1c16fd42a5983d31 | refs/heads/master | 2021-01-10T13:55:34.236989 | 2016-04-21T05:32:18 | 2016-04-21T05:32:18 | 52,827,667 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 721 | puml | @startuml
FlashCardSet ->FlashCard
class FlashCardSet{
-fcName : String
-fc : FlashCard
-fcArr : Array - FlashCard
#FlashCardSet(name : fcName)
+isEmpty() : Boolean
+addFlashCard(flashC : FlashCard) : void
+delete() : void
+deleteCurrentFlashCard(flashC : FlashCard)
+getFlashCard() : FlashCard
}
class FlashCard{
-term : String Private
-definition : String
-image : Image
#Flashcard( t :term, d : definition, img = image)
#Flashcard( t :term, d : definition)
+setTerm( t : term ) : void
+setDefinition( d : definition ) : void
+setImage( img : image) : void
+getTerm() : String
+getDefinition() : String
+getImage() : Image
}
@enduml | false | true | false | false | class |
ac6f5306686fd269d91b8468baddb2a2cc8ff442 | d2eddfc6e96773231a60ce059e84cde1e8715247 | /brta_plate_delivery_sequence.puml | 9142ecaa83228e2cf51adf4f8610dce6ac7aa4bd | [] | no_license | smaruf/go-lang-study | cb279d9a6504d877f34c1034d9578fa5117fa21c | 4a60f39c68ad2961ab8e489301b2b2dc53f01952 | refs/heads/master | 2023-08-17T14:20:02.463051 | 2023-08-15T10:57:29 | 2023-08-15T10:57:29 | 221,408,700 | 1 | 0 | null | 2023-03-21T13:50:24 | 2019-11-13T08:24:16 | Go | UTF-8 | PlantUML | false | false | 1,357 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
User -> Portal: Authentication Request
Portal --> User: Authentication Response
User -> Portal: Submit Delivery Changes
Portal -> Rest_Service: Check RegNo and Mobile
Rest_Service --> Portal: If failed, then Alert
Portal --> User: If failed, then Alert
Rest_Service -> Portal: If Success, then Return
Rest_Service --> Rest_Service: Process Application as Pending
Portal --> User: Success
User --> Wallet: Payment Charge
Wallet --> Wallet: Process Payment
Wallet --> Rest_Service: Success and Proceed
Rest_Service --> Rest_Service: Process Internal and Submitted
Rest_Service --> Notify_Service: After Success, Send Application
Notify_Service --> Auth_User: Notify Submission
Auth_User -> EVR_Web: Check Submission
EVR_Web --> Rest_Service: Process Checking
Auth_User -> EVR_Web: Approve Submission
EVR_Web --> Rest_Service: Process Approval and Delivery
Rest_Service --> Notify_Service: Notify User
Notify_Service --> User: Send Notification
User -> Portal: Authentication
Portal --> User: Valid Authentication
User -> Portal: Check Status
Portal <--> Rest_Service: Collect Status
Portal --> User: Show Status
User --> User: If Success, Collect from location
User --> User: If Pending, Try Later
User --> Portal: If Denied, Try Again or Contact Office
@enduml | false | true | false | false | sequence |
b4861ad5a5cc7258f7dc4f6e37a284c65d214351 | 46a3ccd1e7b4b4212f45e2bf3710f7b3955bf561 | /AppReadWriteModel/diagrams/persistence.puml | 01b281d38df5712f69eaf7e715ee9b24926e14cc | [] | no_license | clausbulow/KafkaCQRSapp | e57c2df1a8953b0fa884a29ef93558c8500fbef3 | e621473654ef64d87664109321ab364d923f9e89 | refs/heads/main | 2023-07-26T05:35:28.705524 | 2021-09-07T06:55:35 | 2021-09-07T06:55:35 | 385,595,547 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 554 | puml | @startuml
'https://plantuml.com/component-diagram
package "Application" {
[Write Model] --> Postgres : Business Events
[Write Model] --> java : Business Data
[Read Model] --> H2: Perspective on Business Data
}
database "Postgres" {
}
database "H2" {
}
database "Java-Map (in-memory)" as java {
}
note bottom of java
The java Map "database" is just a simple in memory
Hashmap containing the Business Data required to validate
Commands.
end note
note bottom of H2
The H2 database is an in memory
in process database
end note
@enduml | false | true | false | false | sequence |
7eb56f7279115a2ebcac9df23b32f5e2d5c50ad7 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /scala-meta-model/util/extension.meta.puml | dfb09cfc961b4e5cd7d32e7396d35f1845a6fea3 | [
"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 | 384 | puml | @startuml Extension
class Extension
Extension --left> "*" TypeParameter : genericParameters
Extension *--> "1" Parameter : parameter
Extension --> "0..* " UsingParameterSeq : usingParameters
Extension *--right> "1..*" DefDef : extensionMethods
hide class circle
hide class methods
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
}
@enduml | false | true | false | false | sequence |
e9aba1b3079e946ac9b39c6a4cf45f4ffa427227 | 3484c58ff14ff54f42328ce7d4cdd43092dcddf8 | /doc/pkg.puml | c61c3acd46e0c641f91cfda2676bc220b72c23ca | [
"MIT"
] | permissive | tamurashingo/spreadsheet_test | 2fe0fa74c3150adb919b43743306b37f2b995f7b | 575258c77630da6b5e51e20629cf44e89c5f02ce | refs/heads/master | 2023-03-12T06:15:57.052300 | 2022-08-01T06:51:49 | 2022-08-01T06:51:49 | 141,290,306 | 0 | 1 | MIT | 2023-03-02T03:00:03 | 2018-07-17T13:00:29 | TypeScript | UTF-8 | PlantUML | false | false | 1,163 | puml | @startuml
class CalcController {
calcService: CalcService
calcAll(): void
}
CalcController .right.> CalcService: <<call>>
interface CalcService {
calcAll(): void
}
class CalcServiceImpl implements CalcService {
calcLogic: CalcLogic
calcAll(): void
}
CalcServiceImpl .right.> CalcLogic: <<call>>
CalcServiceImpl ..> AttendVO: <<use>>
interface CalcLogic {
calc(attendVO: AttendVO): AttendVO
getAllAttends(): AttendVO[]
save(attendVO: AttendVO): void
}
class CalcLogicImpl implements CalcLogic {
attendDAO: AttendDAO
calc(attendVO: AttendVO): AttendVO
getAllAttends(): AttendVO[]
save(attendVO: AttendVO): void
}
CalcLogicImpl .right.> AttendDAO: <<call>>
CalcLogicImpl ..> AttendVO: <<use>>
interface AttendDAO {
selectAllAttends(): AttendVO[]
update(attendVO: AttendVO): void
}
class AttendDAOImpl implements AttendDAO {
selectAllAttends(): AttendVO[]
update(attendVO: AttendVO): void
}
AttendDAOImpl ..> AttendVO: <<use>>
abstract class SpreadsheetVO {
rowId: number
}
class AttendVO extends SpreadsheetVO {
start: Date
end: Date
rest: number
work: number
static copy(src: AttendVO): AttendVO
}
@enduml
| false | true | false | false | class |
b65352eb85fd940c84966f65c74deb581eead331 | e1c9ca126009743f724065ebb8f565dafaf83af2 | /docs/classes.puml | 85137902154d7cbcc6f0fe9b6090925e144765cd | [] | no_license | taqtaq11/shop | 77e5c12db770c637582d8503346df2e3147fd605 | dddbfef580e41bb5ff6b627493d6a223e3d9fb17 | refs/heads/master | 2021-09-08T08:34:09.658568 | 2018-03-08T18:56:45 | 2018-03-08T18:56:45 | 105,592,285 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 762 | puml | @startuml
class Program <<Entry point>> {
{static} void main()
}
package Controllers {
class IndexController {
}
class CatalogController {
String redirect()
String display(Integer categoryId, Integer pageNum, String searchPhrase, String sortDirection, BigDecimal minPrice, BigDecimal maxPrice, Model model)
}
class ProductController {
}
class CartController {
}
class AboutController {
}
class ContactsController {
}
}
package Model.Entities {
}
package Model.Repositories {
interface CategoriesRepository {
List<Category> findByParent_Id(int parent_id);
}
}
package Spring #DDD {
interface CrudRepository
}
CategoriesRepository --|> CrudRepository
@enduml | false | true | false | false | class |
7225ce23791b889ae5462318285e6a3e2f0fc45d | 234311c0ab53fa5502e1031745444ce0c9896f28 | /classes.plantuml | 8c0b2b01fe161137fef8bea0d28d18fe3d5e1fe1 | [] | no_license | SlonSky/galaxy | 89769f1ac721c998dba8b34cd0fe42a98685909f | ded67fedfe7a6c39e40f8cc19ba8b510ab56a5c9 | refs/heads/master | 2020-03-25T12:26:57.230308 | 2018-08-06T20:02:20 | 2018-08-06T20:02:20 | 143,776,951 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,989 | plantuml | @startuml
top to bottom direction
skinparam headerFontSize 30
skinparam headerFontStyle bold
skinparam classAttributeIconSize 0
scale 1.0
package com.company {
package com.company.classes {
interface com.company.classes.EntityA {
.. Methods ..
+ {abstract} getBounds() : Rectangle
+ {abstract} getX() : double
+ {abstract} getY() : double
+ {abstract} render(Graphics) : void
+ {abstract} tick() : void
}
interface com.company.classes.EntityB {
.. Methods ..
+ {abstract} getBounds() : Rectangle
+ {abstract} getX() : double
+ {abstract} getY() : double
+ {abstract} render(Graphics) : void
+ {abstract} tick() : void
}
}
class com.company.Sound {
.. Fields ..
-clip : Clip
-isPlaying : boolean
.. Methods ..
+isPlaying() : boolean
+play() : void
+play(boolean) : void
+stop() : void
.. Interiors ..
-class Listener
}
class com.company.Textures {
.. Fields ..
+enemy : BufferedImage[]
+missile : BufferedImage[]
+player : BufferedImage[]
-ss : SpriteSheet
.. Methods ..
-getTextures() : void
}
class com.company.HelpMenu {
.. Fields ..
-back : Rectangle
-bg : BufferedImage
.. Methods ..
+render(Graphics) : void
}
class com.company.GameObject {
.. Fields ..
+x : double
+y : double
.. Methods ..
+getBounds(int, int) : Rectangle
}
class com.company.BufferedImageLoader {
.. Fields ..
.. Methods ..
.. Static ..
+ {static} loadImage() : BufferedImage
- {static} image : BufferedImage
}
class com.company.SpriteSheet {
.. Fields ..
-image : BufferedImage
.. Methods ..
+grabImage(int, int, int, int) : BufferedImage
}
class com.company.MouseInput <<MouseListener>> {
.. Methods ..
+mouseClicked(MouseEvent) : void
+mouseEntered(MouseEvent) : void
+mouseExited(MouseEvent) : void
+mousePressed(MouseEvent) : void
+mouseReleased(MouseEvent) : void
}
class com.company.Menu {
.. Fields ..
+helpButton : Rectangle
+playButton : Rectangle
+quitButton : Rectangle
.. Methods ..
+render(Graphics) : void
}
class com.company.Physics {
.. Methods ..
.. Static ..
+ {static} Collision() : boolean
+ {static} Collision() : boolean
}
class com.company.Player <? extends GameObject> {
.. Fields ..
~anim : Animation
-c : Controller
~collision : Sound
-game : Game
-tex : Textures
-velX : double
-velY : double
.. Methods ..
+getBounds() : Rectangle
+getX() : double
+getY() : double
+render(Graphics) : void
+setVelX(double) : void
+setVelY(double) : void
+setX(double) : void
+setY(double) : void
+tick() : void
}
class com.company.Game <<Runnable>> {
.. Fields ..
-TITLE : String
-background : BufferedImage
-c : Controller
-die : Sound
+eA : LinkedList
+eB : LinkedList
-enemyCount : int
-enemyKilled : int
-gameOver : GameOver
-helpMenu : HelpMenu
-image : BufferedImage
-isShooting : boolean
-menu : Menu
-p : Player
-running : boolean
-shot : Sound
-spriteSheet : BufferedImage
-textures : Textures
-theme : Sound
-thread : Thread
.. Methods ..
+getEnemyCount() : int
+getEnemyKilled() : int
+getSpriteSheet() : BufferedImage
+init() : void
+keyPressed(KeyEvent) : void
+keyReleased(KeyEvent) : void
-render() : void
+run() : void
+setEnemyCount(int) : void
+setEnemyKilled(int) : void
-start() : void
-stop() : void
-tick() : void
.. Static ..
+ {static} HEIGHT : int
+ {static} SCALE : int
+ {static} WIDTH : int
+ {static} health : int
+ {static} main() : void
+ {static} score : int
+ {static} state : STATE
.. Interiors ..
+ {static} enum STATE
}
class com.company.Bullet <? extends GameObject> {
.. Fields ..
-anim : Animation
-game : Game
-tex : Textures
.. Methods ..
+getBounds() : Rectangle
+getX() : double
+getY() : double
+render(Graphics) : void
+tick() : void
}
class com.company.Enemy <? extends GameObject> {
.. Fields ..
-anim : Animation
-c : Controller
-game : Game
-r : Random
-speed : int
-tex : Textures
.. Methods ..
+getBounds() : Rectangle
+getX() : double
+getY() : double
+render(Graphics) : void
+setX(double) : void
+setY(double) : void
+tick() : void
}
class com.company.Animation {
.. Fields ..
-count : int
-currentImg : BufferedImage
-frames : int
-img1 : BufferedImage
-img10 : BufferedImage
-img11 : BufferedImage
-img12 : BufferedImage
-img13 : BufferedImage
-img14 : BufferedImage
-img2 : BufferedImage
-img3 : BufferedImage
-img4 : BufferedImage
-img5 : BufferedImage
-img6 : BufferedImage
-img7 : BufferedImage
-img8 : BufferedImage
-img9 : BufferedImage
-index : int
-speed : int
.. Methods ..
+drawAnimation(Graphics, double, double, int) : void
+getCount() : int
+getCurrentImg() : BufferedImage
+getSpeed() : int
+nextFrame() : void
+runAnimation() : void
+setCount(int) : void
+setCurrentImg(BufferedImage) : void
+setSpeed(int) : void
}
class com.company.KeyInput {
.. Fields ..
~game : Game
.. Methods ..
+keyPressed(KeyEvent) : void
+keyReleased(KeyEvent) : void
}
class com.company.Controller {
.. Fields ..
-eA : LinkedList
-eB : LinkedList
~entA : EntityA
~entB : EntityB
-game : Game
~r : Random
~tex : Textures
.. Methods ..
+addEntity(EntityA) : void
+addEntity(EntityB) : void
+createEnemy(int) : void
+getEntityA() : LinkedList
+getEntityB() : LinkedList
+removeEntity(EntityB) : void
+removeEntity(EntityA) : void
+render(Graphics) : void
+tick() : void
}
class com.company.GameOver {
.. Fields ..
+buttonBack : Rectangle
+scoreInfo : Rectangle
.. Methods ..
+render(Graphics) : void
}
}
com.company.Textures o-- "1..1" com.company.SpriteSheet
com.company.GameObject <|-- com.company.Player
com.company.classes.EntityA <|.. com.company.Player
com.company.Player o-- "1..1" com.company.Textures
com.company.Player o-- "1..1" com.company.Controller
com.company.Player o-- "1..1" com.company.Animation
com.company.Player o-- "1..1" com.company.Sound
com.company.Game o-- "1..1" com.company.Textures
com.company.Game o-- "1..1" com.company.Menu
com.company.Game o-- "1..1" com.company.GameOver
com.company.Game o-- "1..1" com.company.HelpMenu
com.company.Game *-- "0..*" com.company.classes.EntityA
com.company.Game *-- "0..*" com.company.classes.EntityB
com.company.GameObject <|-- com.company.Bullet
com.company.classes.EntityA <|.. com.company.Bullet
com.company.Bullet o-- "1..1" com.company.Textures
com.company.Bullet o-- "1..1" com.company.Animation
com.company.Bullet o-- "1..1" com.company.Game
com.company.GameObject <|-- com.company.Enemy
com.company.classes.EntityB <|.. com.company.Enemy
com.company.Enemy o-- "1..1" com.company.Textures
com.company.Enemy o-- "1..1" com.company.Animation
com.company.Enemy o-- "1..1" com.company.Game
com.company.Enemy o-- "1..1" com.company.Controller
com.company.KeyInput o-- "1..1" com.company.Game
com.company.Controller *-- "0..*" com.company.classes.EntityA
com.company.Controller *-- "0..*" com.company.classes.EntityB
com.company.Controller o-- "1..1" com.company.classes.EntityA
com.company.Controller o-- "1..1" com.company.classes.EntityB
com.company.Controller o-- "1..1" com.company.Textures
com.company.Game o-- "3..3" com.company.Sound
com.company.Player "1..1" o..o "1..1" com.company.Game
com.company.Game "1..1" o..o "1..1" com.company.Controller
@enduml
| false | true | false | false | class |
027fe322d2e5288eeb9c53229bc8c1d92e3a52eb | ee6841e96c76962e9f74ba032a25d2e923b7e42c | /casual-things/src/main/resources/books-mindmap/web-general/ch3/classloader.puml | bf3c350686c979f26fbbc4ba703874a8ab319f3a | [] | no_license | physicsLoveJava/java-miscellaneous | 614cfbad7dd7679e99c561b210ebbbf1a9df941e | e7563fdc9b5f955662cba40fc48614e45747d020 | refs/heads/master | 2021-07-19T13:30:51.096326 | 2019-01-21T09:09:50 | 2019-01-21T09:09:50 | 105,858,854 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 346 | puml | @startuml
class Launcher
abstract class ClassLoader
class URLClassLoader extends SecureClassLoader implements Closeable
class ExtClassLoader extends URLClassLoader
class AppClassLoader extends URLClassLoader
class SecureClassLoader extends ClassLoader
Launcher *--> ExtClassLoader
Launcher *--> AppClassLoader
Launcher .--> ClassLoader
@enduml | false | true | false | false | class |
03724d30b035a5e3c3bb035ecd88ebf519120a33 | d68b1330ef8ce59c635f4692417a9192d5206942 | /core/src/no/ntnu/idi/apollo69/uml/generated/classes_only/controller_classes.plantuml | 752dbcd8096037be85966c0a0506e01089b40b76 | [
"MIT"
] | permissive | GardSteinsvik/apollo-69 | 847f74b762383641db20214ff7b5281c9d63f130 | 96cbf617618075a54613112bc8c0b34215fd50f7 | refs/heads/master | 2021-02-12T20:21:06.214711 | 2020-04-27T16:02:37 | 2020-04-27T16:02:37 | 244,626,902 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 861 | plantuml | @startuml
class no.ntnu.idi.apollo69.controller.GameController {
+ GameController()
+ boostButtonPressed()
+ boostButtonReleased()
+ shootButtonPressed()
+ shootButtonReleased()
+ touchpadMoved()
}
class no.ntnu.idi.apollo69.controller.LobbyController {
+ LobbyController()
+ exitButtonPressed()
+ joinButtonPressed()
}
class no.ntnu.idi.apollo69.controller.MainMenuController {
+ MainMenuController()
+ playButtonPressed()
}
class no.ntnu.idi.apollo69.controller.MatchmakingController {
+ MatchmakingController()
+ cancelMatchmaking()
+ onMatchmakingDone()
+ onShow()
+ startMatchmaking()
}
@enduml
| false | true | false | false | class |
ae2a848248cfa80409eb6a5676f8a96a59a618aa | 4bda6e432b9f7f3474a364aae04d9c8af7211f0f | /app/app.plantuml | fa0578dd52ea06f0562733dea5eea9534c6938da | [] | no_license | kyczor/goCompiler | 1c72c3aae975cdfc7fc949e8a775cf2beee2620f | 95987c7372eafd311edcaf07cee68506e17d5f6a | refs/heads/master | 2020-08-18T21:39:32.206767 | 2020-01-22T15:19:36 | 2020-01-22T15:19:36 | 215,836,797 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,073 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.example.remoteCompiler {
class com.example.remoteCompiler.BuildConfig {
}
}
namespace com.example.remoteCompiler {
class com.example.remoteCompiler.DisplayErrorsActivity {
}
}
namespace com.example.remoteCompiler {
class com.example.remoteCompiler.ErrorsData {
}
}
namespace com.example.remoteCompiler {
class com.example.remoteCompiler.FixErrorsActivity {
}
}
namespace com.example.remoteCompiler {
class com.example.remoteCompiler.MainActivity {
}
}
com.example.remoteCompiler.DisplayErrorsActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.remoteCompiler.FixErrorsActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.remoteCompiler.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
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 |
fda908b33de5782c2c27fd3b11e04e722b70006b | d5ec0059b3ae070b517d29e13368c180705af3cc | /doc/uml/class_diagram/part2.puml | 224dce1aea95ae93bf3e8d84f035f377d1b9a9c0 | [
"MIT"
] | permissive | adriancleung/vibes | f9e884c035eae91739f63289cad8e58b0f48be26 | 664d57b399c76e929a5194812892ba6424496dbf | refs/heads/master | 2020-09-22T06:00:36.641439 | 2020-01-13T21:29:37 | 2020-01-13T21:29:37 | 225,077,716 | 0 | 0 | MIT | 2020-01-13T21:42:14 | 2019-11-30T22:28:58 | Java | UTF-8 | PlantUML | false | false | 3,881 | puml | @startuml
skinparam {
linetype ortho
classAttributeIconSize 0
Class {
FontSize 18
ArrowFontSize 10
}
Package {
FontSize 24
}
}
package com.cmput201f10t09.vibes <<Rectangle>> {
class LoginActivity {
}
class MainActivity {
}
class SignUpActivity {
}
class SplashActivity {
}
SplashActivity -- LoginActivity
SplashActivity -- SignUpActivity
SplashActivity -- MainActivity
LoginActivity -- SignUpActivity
package dialogs <<Rectangle>> {
class MoodFilterDialog
}
package fragments <<Rectangle>> {
package editfragment <<Rectangle>> {
class EditFragment {
}
class ImageAdapter {
}
ImageAdapter "1" -- "1" EditFragment
}
package followingfragment <<Rectangle>> {
class FollowingFragment {
}
class FollowingFragmentAdatper {
}
FollowingFragment "1" o-- "1" FollowingFragmentAdatper
}
package mapfragment <<Rectangle>> {
class MapFilter {
}
class MapFragment {
}
class UserPoint {
}
MapFragment "1" o-- "1" MapFilter
MapFragment "1" -- "0..*" UserPoint
}
package mooddetailsfragment <<Rectangle>> {
class MoodDetailsDialogFragment {
}
class MoodDetailsFragment {
}
}
package moodlistfragment <<Rectangle>> {
class FollowedMoodListAdapter {
}
class OwnMoodListAdapter {
}
class MoodListAdapter {
}
class MoodListFilter {
}
interface MoodListFilterListener {
}
class MoodListFilterFragment {
}
class MoodListFragment {
}
MoodListAdapter <|-- FollowedMoodListAdapter
MoodListAdapter <|-- OwnMoodListAdapter
MoodListFragment "1" *-- "1" MoodListAdapter
MoodListFilterListener <|-- MoodListFragment
MoodListFilterFragment "1" o-- "1..*" MoodListFilterListener
MoodListFilterFragment -- MoodListFilter
MoodListFragment "1" -- "1" MoodListFilter
MoodListFragment "1" *-- "1" MoodListFilterFragment
}
package profilefragment <<Rectangle>> {
class ProfileFragment {
}
}
ProfileFragment "1" *-- "0..1" MoodListFragment
ProfileFragment "1" *-- "0..1" MoodDetailsFragment
ProfileFragment -- MoodDetailsDialogFragment
ProfileFragment -- FollowingFragment
MoodDetailsDialogFragment -- MapFragment
MoodDetailsDialogFragment -- MoodListFragment
EditFragment -- MoodDetailsDialogFragment
}
package models <<Rectangle>> {
class EmotionalState {
}
class Event {
}
class MoodEvent {
}
class User {
}
class UserManager {
}
Event <|-- MoodEvent
MoodEvent "1" *-- "1" EmotionalState
UserManager "1" o-- "0..*" User
User "1" *-- "0..*" MoodEvent
}
ProfileFragment -- User
MoodListFragment -- User
MoodListAdapter -- User
MoodListAdapter -- MoodEvent
MapFragment -- User
MapFragment -- MoodEvent
MainActivity "1" o-- "0..1" ProfileFragment
MainActivity "1" o-- "0..1" MoodListFragment
MainActivity "1" o-- "0..1" MapFragment
MainActivity "1" o-- "0..1" EditFragment
MainActivity "1" o-- "0..1" MoodDetailsDialogFragment
}
abstract class Observable {
}
interface Observer {
}
Observable <|-- User
Observer <|-- MoodListAdapter
Observer <|-- ProfileFragment
Observer <|-- MapFragment
@enduml
| false | true | false | false | class |
36c5af2753fc577de31e78a58d06a0e12f0c72c9 | 50c9a8c9593da48c14ba320644aa4f93bd959839 | /uml/blog.puml | ce7cb2295be1df05991fba980a1c1eda45a65ace | [
"Apache-2.0"
] | permissive | egibide-dam/lm-laravel-docs | 12becc1f13ebe010ed4f060517b88a06afe791ca | 3f257af8e96a8ba2d9c8436df24a87e436d9775a | refs/heads/master | 2023-05-11T06:44:36.083246 | 2023-04-29T16:32:24 | 2023-04-29T16:32:50 | 242,992,277 | 0 | 4 | null | null | null | null | UTF-8 | PlantUML | false | false | 302 | puml | @startuml
skinparam classAttributeIconSize 0
skinparam nodesep 100
skinparam ranksep 80
class Entrada {
- titulo: String
- texto: Text
- fecha: DateTime
- visible: Boolean
}
class Comentario {
- email: String
- texto: Text
- fecha: DateTime
- visible: Boolean
}
Entrada "1" - "*" Comentario
@enduml
| false | true | false | false | class |
dee80147ae83380384fa1cf56d07830dc636ca7c | c4020ccd3634b261f916bc974f11654bb46c1410 | /doc/hw3/C/Tables/Random Events and Killer Penguins/src/tables/Map Class Diagram.puml | 42691823398a1a21bb75c188ddc7462feefbeae9 | [] | no_license | Jgoga/sworsorc | ba04eb96477d9dad693614c2e9f60cd66aa5d5b2 | 811b44fc632ee7925a10587b9838ce1ade78007d | refs/heads/master | 2020-12-02T19:47:05.989702 | 2014-05-14T19:52:44 | 2014-05-14T19:52:44 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 812 | puml | @startuml
hide circles
title Map Class Diagram
note "Author: Cameron Simon \nEdited by: Joe Higley" as n1
Map *-- "1..*" Provinces : contains
Provinces *-- "1..*" Hexes : contains
Hexes o-- "0..*" Characters
Characters <|-- Sorcerers
Hexes o-- "0..2" Army_Units
Army_Units <|-- Imperial_Army
Army_Units <|-- Elven
Army_Units <|-- O.R.C.
Army_Units <|-right- etc.
Hexes o-- "0..3" Monsters
Monsters <|-- Demons
Monsters <|-- KillerPenguins
Monsters <|-- Dragons
Hexes *-right- "1" Terrain
Terrain <|-- Swamp
Terrain <|-- Glacier
Terrain <|-- Moat_or_River
Terrain <|-right- etc..
Terrain <|-up- SpecialTerrain
SpecialTerrain <|-up- Portal_and_Vortex
SpecialTerrain <|-up- SpecialHexes
SpecialTerrain <|-up- TunnelComplexes
@enduml | false | true | false | false | class |
ddef4ef0af60def9049c25d61b89a5e047e01ded | faae537e2a9703d83405359f39b87d51c51e4611 | /app/src/main/java/co/newsmusik/UML/FeedItemDiagram.puml | 42f2d8b9cefd895516995cf2245befb81880244b | [] | no_license | dekikurnia/NewsMusik-Android | cc4d4af48e11f4770aa6f01d4c033c943d699396 | 4724b44965220f66de8f16bbe6db7553cce0f778 | refs/heads/master | 2021-01-10T11:56:30.984526 | 2017-05-29T05:33:38 | 2017-05-29T05:33:38 | 54,531,455 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 738 | puml | @startuml
class FeedItem {
private String title;
private String thumbnail;
private String category;
private String date;
private String contentDetail;
private String imageCredit;
private String shareLink;
public String getTitle()
public void setTitle(String title)
public String getThumbnail()
public void setThumbnail(String thumbnail)
public String getCategory()
public void setCategory(String category)
public String getDate()
public void setDate(String date)
public String getContentDetail()
public void setContentDetail(String contentDetail)
public String getImageCredit()
public void setImageCredit(String imageCredit)
public String getShareLink()
public void setShareLink(String shareLink)
}
@enduml | false | true | false | false | class |
a5d67181c66cd71abf7c5137ddcbe9f5576359c7 | d5cd4002a5839acc484a6186263702b522d3491e | /pr4/src/com/company/utils/io/io.plantuml | ce88516ad5287be33e9cbbb1a38e4a81bf18a03a | [] | no_license | shevchenkona19/javaIPZ-31Shevchenko | bf8b84dc1d76eaf87c0d7a0265c6524233273efe | 46571bb3b2ca95526332db55f4ab0d093f41fcba | refs/heads/master | 2020-04-09T20:23:29.658468 | 2018-12-05T20:09:51 | 2018-12-05T20:09:51 | 160,571,977 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 640 | plantuml | @startuml
title __IO's Class Diagram__\n
package com.company {
package com.company.utils.io {
class Input {
{static} - scanner : Scanner
{static} + getNextLine()
{static} + getChoice()
}
}
}
package com.company {
package com.company.utils.io {
class Printer {
{static} + print()
{static} + print()
{static} + print()
}
}
}
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 |
3f6dd0bf3151a84c1980089113bb0f541e504a81 | 2b6941b92c50f4249cae69ba78da255f533addda | /ext/useCase/reponseQuickHelpPost.puml | ad9366197ae2f10c9da8404cc43baab03e3c4499 | [] | no_license | LBiasibetti/coopToolProject | 25c4d476c0a5f98e247078bfc47d80c21d56b163 | 271604fbefa294b0f3f1da26b5122c9252e4013d | refs/heads/master | 2023-02-12T03:59:20.248862 | 2021-01-12T17:58:39 | 2021-01-12T17:58:39 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 352 | puml | @startuml
left to right direction
:student: --> (view a quick help answer)
:student: --> (post a quick help answer)
:student: --> (delete a quick help answer)
:admin: --> (delete a quick help answer)
:admin: --> (view a quick help answer)
(post a quick help answer) ..> (send a notification) : << include >>
(send a notification) <-- :system:
@enduml
| false | true | false | false | class |
0a0093d44ea4c6a68f4a4d82ed2ae1e194bd8a65 | 91fceecc2c8cf6309741e0fb715cec95f8558ca8 | /assets/plantuml/composition.plantuml | 81bd6d8a2024dfd3c1c673af94d51ab5d7b583f0 | [
"MIT"
] | permissive | ohm-softa/ohm-softa.github.io | dd8b3fbbcce62d3625603376f0771ab62557d76a | 7479445d2b5598a9aaaa4f37ffd76436fc81482e | refs/heads/master | 2023-07-20T07:43:25.665737 | 2023-07-12T08:10:32 | 2023-07-12T08:10:32 | 170,150,460 | 20 | 42 | MIT | 2023-06-24T15:22:55 | 2019-02-11T15:16:01 | HTML | UTF-8 | PlantUML | false | false | 108 | plantuml | @startuml Composition
class SimpleList <T>{
}
class ListElement {
}
ListElement --* SimpleList
@enduml | false | true | false | false | class |
6d2b924ebbc086ffe35be4820156809b32e3fd16 | b19ded8f210ec870cdb0d4e810581efcfe041c64 | /structure.puml | 8d2e7ea3e26184656883148ff4a5a298730be763 | [
"Apache-2.0"
] | permissive | pikkle/vexmxl | 666116223302c2e16b81d0acd9c7aba36e22df23 | 20ee0c4e05e4c610f10059df07b8c1c2451dcaa9 | refs/heads/master | 2020-12-30T16:28:43.451529 | 2018-03-29T10:41:35 | 2018-03-29T10:41:35 | 90,996,368 | 5 | 1 | Apache-2.0 | 2017-12-21T13:40:02 | 2017-05-11T15:43:34 | TypeScript | UTF-8 | PlantUML | false | false | 649 | puml | @startuml
interface VextabRepresentable {
toVextab(): String
}
class Tablature implements VextabRepresentable {
title: String
tuning: String[]
}
class Measure implements VextabRepresentable {
}
class Time implements VextabRepresentable
class Chord extends Time
class Rest extends Time
class Note implements VextabRepresentable {
fret: number;
string: number;
}
enum Property {
HAMMER_ON, PULL_OFF, SLIDE, BEND_HALF, BEND_FULL
}
enum Duration {
WHOLE, HALF, EIGHTH, ...
}
Tablature "1" -- "*" Measure
Measure "1" -- "*" Time
Chord "*" -- "1..6" Note
Chord "*" -- "*" Property
Time "*" -- "1" Duration
@enduml | false | true | false | false | class |
aa1667789538c341ef0abe313dd946156323d24c | d99806bb17e4a22325f775539981c6b7799b9d16 | /docs/green/1160815/sp3/analysis4.puml | 622702597f3be50dc0e118e73a71b1db4ccc1230 | [] | no_license | Fuel4us/GWTFinalProject | 3d0e1194f142cfcbdfc3d24f37a7537ff3a30dfb | b6c2f6add1687ca7800a9ec243edbe067ca6090c | refs/heads/master | 2020-03-21T19:47:13.534718 | 2018-06-28T05:33:43 | 2018-06-28T05:33:43 | 138,969,901 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 567 | puml | @startuml analysis4.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
User -> Browser : navigate to Note page
Browser ->> Server : getAllNotes()
database Database
Server -> Database : fetch
Server -->> Browser : return
Browser -> Browser : display notes
User -> Browser : clicks in delete button of a note
Browser -> Server : deleteNote()
Server -> Database : remove()
Server -->> Browser : return()
Browser -> Browser : display notes
@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.