|
@@ -14,7 +14,7 @@ public class FileAttribute {
|
|
|
private String url;
|
|
|
private String fileKey;
|
|
|
private String officePreviewType = ConfigConstants.getOfficePreviewType();
|
|
|
- private String previewType;
|
|
|
+ private String tifPreviewType;
|
|
|
|
|
|
public FileAttribute() {
|
|
|
}
|
|
@@ -34,13 +34,13 @@ public class FileAttribute {
|
|
|
this.officePreviewType = officePreviewType;
|
|
|
}
|
|
|
|
|
|
- public FileAttribute(FileType type, String suffix, String name, String url, String officePreviewType, String previewType) {
|
|
|
+ public FileAttribute(FileType type, String suffix, String name, String url, String officePreviewType, String tifPreviewType) {
|
|
|
this.type = type;
|
|
|
this.suffix = suffix;
|
|
|
this.name = name;
|
|
|
this.url = url;
|
|
|
this.officePreviewType = officePreviewType;
|
|
|
- this.previewType = previewType;
|
|
|
+ this.tifPreviewType = tifPreviewType;
|
|
|
}
|
|
|
|
|
|
public String getFileKey() {
|
|
@@ -91,12 +91,12 @@ public class FileAttribute {
|
|
|
this.url = url;
|
|
|
}
|
|
|
|
|
|
- public String getPreviewType() {
|
|
|
- return previewType;
|
|
|
+ public String getTifPreviewType() {
|
|
|
+ return tifPreviewType;
|
|
|
}
|
|
|
|
|
|
- public void setPreviewType(String previewType) {
|
|
|
- this.previewType = previewType;
|
|
|
+ public void setTifPreviewType(String previewType) {
|
|
|
+ this.tifPreviewType = previewType;
|
|
|
}
|
|
|
|
|
|
}
|