From fb3a998c04d344b8e0b668c8960d3eddbda1d4d9 Mon Sep 17 00:00:00 2001 From: Gopinath Langote Date: Thu, 14 Sep 2017 22:52:29 +0530 Subject: [PATCH] #631 - Partial Response : Modified puml digram --- partial-response/etc/partial-response.urm.puml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/partial-response/etc/partial-response.urm.puml b/partial-response/etc/partial-response.urm.puml index 8331ad086..69efd0454 100644 --- a/partial-response/etc/partial-response.urm.puml +++ b/partial-response/etc/partial-response.urm.puml @@ -2,6 +2,7 @@ package com.iluwatar.partialresponse { class FieldJsonMapper { + FieldJsonMapper() + - getString(video : Video, declaredField : Field) : String + toJson(video : Video, fields : String[]) : String } class Video { @@ -14,6 +15,11 @@ package com.iluwatar.partialresponse { + Video(id : Integer, title : String, length : Integer, description : String, director : String, language : String) + toString() : String } + class VideoClientApp { + - LOGGER : Logger {static} + + VideoClientApp() + + main(args : String[]) {static} + } class VideoResource { - fieldJsonMapper : FieldJsonMapper - videos : Map