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