类 | 说明 |
---|---|
AttachmentFileCreator |
Created by hasee on 2017/6/28.
|
AttachmentFileCreatorStrategy |
AttachmentFileCreatorStrategy类的目的是此类来读取配置或者设置的存储方式,业务层调用可以屏蔽底层的存储
AttachmentFileFactory生产AttacmentFile,直接依赖此策略类来产生File,策略增加时,需要修改此类
Created by CL on 2017/6/29.
|
AttachmentFileFactory |
附件文件的工厂类,依赖AttachmentFileCreator,对AttachmentFileCreator的细节不感知
这个应该是单一职责的最好说明了吧,因为不知道AttachmentFileCreator的细节,因此也符合
知道最少原则。
|
DefaultAttachmentCreator |