1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.onehippo.forge.cmisreplication.util;
17
18 public class AssetMetadata {
19
20 private String path;
21 private String mimeType;
22 private long lastModified;
23
24 public String getPath() {
25 return path;
26 }
27
28 public void setPath(String path) {
29 this.path = path;
30 }
31
32 public String getMimeType() {
33 return mimeType;
34 }
35
36 public void setMimeType(String mimeType) {
37 this.mimeType = mimeType;
38 }
39
40 public long getLastModified() {
41 return lastModified;
42 }
43
44 public void setLastModified(long lastModified) {
45 this.lastModified = lastModified;
46 }
47
48 }