#631 - Partial Response : Modified puml digram

This commit is contained in:
Gopinath Langote
2017-09-14 22:52:29 +05:30
parent 711f3faf67
commit fb3a998c04

View File

@ -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<Integer, Video>