01: package org.drools.repository.events;
02:
03: public class AssetMove extends AssetChange {
04:
05: private String oldFileName;
06: private String format;
07: private String oldPath;
08: private String newFileFormat;
09: private String newPath;
10:
11: public AssetMove(String oldFileName, String format, String oldPath,
12: String newFileFormat, String newPath) {
13: super ();
14: this .oldFileName = oldFileName;
15: this .format = format;
16: this .oldPath = oldPath;
17: this .newFileFormat = newFileFormat;
18: this .newPath = newPath;
19: }
20:
21: public String getFormat() {
22: return format;
23: }
24:
25: public String getNewFileFormat() {
26: return newFileFormat;
27: }
28:
29: public String getNewPath() {
30: return newPath;
31: }
32:
33: public String getOldFileName() {
34: return oldFileName;
35: }
36:
37: public String getOldPath() {
38: return oldPath;
39: }
40:
41: }
|