org.sonar.api.batch.Event Maven / Gradle / Ivy
/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2014 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* SonarQube 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
* Lesser General Public License for more details.
*
* You should have received a copy of 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.sonar.api.batch;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.sonar.api.database.BaseIdentifiable;
import org.sonar.api.database.model.Snapshot;
import java.util.Date;
import javax.persistence.*;
/**
* @since 1.10
*/
@Entity
@Table(name = "events")
public class Event extends BaseIdentifiable {
public static final String CATEGORY_VERSION = "Version";
public static final String CATEGORY_ALERT = "Alert";
public static final String CATEGORY_PROFILE = "Profile";
@Column(name = "name", updatable = true, nullable = true, length = 400)
private String name;
@Column(name = "description", updatable = true, nullable = true, length = 4000)
private String description;
@Column(name = "category", updatable = true, nullable = true, length = 50)
private String category;
@Column(name = "event_date", updatable = true, nullable = false)
private Date date;
@Column(name = "created_at", updatable = true, nullable = true)
private Date createdAt;
@Column(name = "event_data", updatable = true, nullable = true)
private String data;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "snapshot_id", updatable = true, nullable = true)
private Snapshot snapshot;
@Column(name = "resource_id", updatable = true, nullable = true)
private Integer resourceId;
public Event() {
}
public Event(String name, String description, String category) {
this.name = name;
this.description = description;
this.category = category;
}
/**
* @deprecated in 2.5
*/
@Deprecated
public Event(String name, String description, String category, Date date, Integer resourceId) {
this.name = name;
this.description = description;
this.category = category;
this.date = date;
this.resourceId = resourceId;
}
/**
* @deprecated in 2.5
*/
@Deprecated
public Event(String name, String description, String category, Snapshot snapshot) {
this.name = name;
this.description = description;
this.category = category;
setSnapshot(snapshot);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public boolean isVersionCategory() {
return CATEGORY_VERSION.equalsIgnoreCase(category);
}
public boolean isProfileCategory() {
return CATEGORY_PROFILE.equalsIgnoreCase(category);
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public Snapshot getSnapshot() {
return snapshot;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public final void setSnapshot(Snapshot snapshot) {
this.snapshot = snapshot;
if (snapshot != null) {
this.date = snapshot.getCreatedAt();
this.resourceId = snapshot.getResourceId();
}
}
public Integer getResourceId() {
return resourceId;
}
public Event setResourceId(Integer resourceId) {
this.resourceId = resourceId;
return this;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
@Override
public String toString() {
return new ToStringBuilder(this)
.append("name", name)
.append("categ", category)
.append("date", date)
.append("snapshot", snapshot)
.append("resource", resourceId)
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy