/* * RHQ Management Platform * Copyright (C) 2005-2008 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation, and/or the GNU Lesser * General Public License, version 2.1, also as published by the Free * Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License and the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU General Public License * and the GNU Lesser General Public License along with this program; * if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.rhq.core.domain.event.composite; import java.io.Serializable; import java.util.Date; import org.rhq.core.domain.event.EventSeverity; /** * A Data transfer object for the Event structure. * Not all fields will be filled in every given time. * @author Heiko W. Rupp * */ public class EventComposite implements Serializable { private static final long serialVersionUID = 1L; private String eventDetail; private int resourceId; private String resourceName; private String resourceAncestry; private int resourceTypeId; private int eventId; private String sourceLocation; private EventSeverity severity; private long timestamp = -1; public EventComposite() { // needed by JSON-based UI pages } public EventComposite(String eventDetail, int resourceId, String resourceName, String resourceAncestry, int resourceTypeId, int eventId, EventSeverity severity, String sourceLocation, Long timestamp) { super(); this.eventDetail = eventDetail; this.resourceId = resourceId; this.resourceName = resourceName; this.resourceAncestry = resourceAncestry; this.resourceTypeId = resourceTypeId; this.eventId = eventId; this.severity = severity; this.sourceLocation = sourceLocation; if (timestamp != null) { this.timestamp = timestamp; } } public String getEventDetail() { return eventDetail; } public void setEventDetail(String eventDetail) { this.eventDetail = eventDetail; } public int getResourceId() { return resourceId; } public void setResourceId(int resourceId) { this.resourceId = resourceId; } public String getResourceName() { return resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public int getEventId() { return eventId; } public void setEventId(int eventId) { this.eventId = eventId; } public String getSourceLocation() { return sourceLocation; } public void setSourceLocation(String sourceLocation) { this.sourceLocation = sourceLocation; } public EventSeverity getSeverity() { return severity; } public void setSeverity(EventSeverity severity) { this.severity = severity; } public Date getTimestamp() { return new Date(timestamp); } public void setTimestamp(Date timestamp) { this.timestamp = timestamp.getTime(); } public String getResourceAncestry() { return resourceAncestry; } public void setResourceAncestry(String resourceAncestry) { this.resourceAncestry = resourceAncestry; } public int getResourceTypeId() { return resourceTypeId; } public void setResourceTypeId(int resourceTypeId) { this.resourceTypeId = resourceTypeId; } }