mirror of
https://github.com/13hannes11/bachelor_thesis.git
synced 2024-09-04 01:11:00 +02:00
improve API diagram
This commit is contained in:
@@ -8,9 +8,17 @@ skinparam class {
|
||||
skinparam shadowing false
|
||||
|
||||
package API {
|
||||
class ConfigurationAPI
|
||||
class RecommenderAPI
|
||||
class ProductStructureAPI
|
||||
class ConfigurationAPI {
|
||||
+get() : JSON
|
||||
+post(configuration : JSON) : JSON
|
||||
}
|
||||
class RecommenderAPI {
|
||||
+post(preferences : JSON, configuration : JSON) : JSON
|
||||
}
|
||||
class ProductStructureAPI {
|
||||
+put(productStructure : JSON) : JSON
|
||||
+get() : JSON
|
||||
}
|
||||
}
|
||||
"/config/" ()-- ConfigurationAPI
|
||||
"/recommender/" ()-- RecommenderAPI
|
||||
|
||||
Reference in New Issue
Block a user