improve API diagram

This commit is contained in:
hannes.kuchelmeister
2020-02-06 10:41:21 +01:00
parent 50785d1bb0
commit 24a28d7df9

View File

@@ -8,9 +8,17 @@ skinparam class {
skinparam shadowing false skinparam shadowing false
package API { package API {
class ConfigurationAPI class ConfigurationAPI {
class RecommenderAPI +get() : JSON
class ProductStructureAPI +post(configuration : JSON) : JSON
}
class RecommenderAPI {
+post(preferences : JSON, configuration : JSON) : JSON
}
class ProductStructureAPI {
+put(productStructure : JSON) : JSON
+get() : JSON
}
} }
"/config/" ()-- ConfigurationAPI "/config/" ()-- ConfigurationAPI
"/recommender/" ()-- RecommenderAPI "/recommender/" ()-- RecommenderAPI