package schedframe.resources; public class ResourceHistoryItem { private long timestamp; private String resourceName; private String action; private String paramter; public ResourceHistoryItem(long timestamp, String resourceName, String action, String paramter) { super(); this.timestamp = timestamp; this.resourceName = resourceName; this.action = action; this.paramter = paramter; } public long getTimestamp() { return timestamp; } public String getResourceName() { return resourceName; } public String getAction() { return action; } public String getParamter() { return paramter; } }