source: DCWoRMS/branches/coolemall/src/schedframe/resources/ResourceHistoryChanges.java @ 1207

Revision 1207, 658 bytes checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.resources;
2
3
4public class ResourceHistoryChanges {
5       
6        private long timestamp;
7        private String resourceName;
8        private String operation;
9        private String paramter;
10       
11        public ResourceHistoryChanges(long timestamp, String resourceName, String operation, String paramter) {
12                super();
13                this.timestamp = timestamp;
14                this.resourceName = resourceName;
15                this.operation = operation;
16                this.paramter = paramter;
17        }
18       
19        public long getTimestamp() {
20                return timestamp;
21        }
22       
23        public String getResourceName() {
24                return resourceName;
25        }
26       
27        public String getOperation() {
28                return operation;
29        }
30       
31        public String getParamter() {
32                return paramter;
33        }
34}
Note: See TracBrowser for help on using the repository browser.