◆ ServerFileAdapter()
org.turro.wd.entities.ServerFileAdapter.ServerFileAdapter |
( |
Collection< Attachment > |
collection | ) |
|
Definition at line 31 of file ServerFileAdapter.java.
33 for(Attachment a : collection) {
34 ServerFile sf =
new ServerFile();
35 sf.setFileContentType(a.getFileContentType());
36 sf.setFileName(a.getFileName());
37 sf.setFileSize(a.getFileSize());
38 sf.setLocked(a.isLocked());
39 sf.setLocker(a.getLocker());
40 sf.setModification(a.getModification());
41 sf.setOwner(a.getOwner());
42 sf.setPath(a.getPath());
The documentation for this class was generated from the following file: