blob: 1f2cd9d8c6010d24d0ae95d7d4db2b68b7b9555d [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package com.cloud.alert;
import java.util.Date;
import java.util.UUID;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import com.cloud.utils.db.GenericDao;
@Entity
@Table(name = "alert")
public class AlertVO implements Alert {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private long id;
@Column(name = "type")
private short type;
@Column(name = "cluster_id")
private Long clusterId = null;
@Column(name = "pod_id")
private Long podId = null;
@Column(name = "data_center_id")
private long dataCenterId = 0;
@Column(name = "subject", length = 999)
private String subject;
@Column(name = "content", length = 5000)
private String content;
@Column(name = "sent_count")
private int sentCount = 0;
@Column(name = GenericDao.CREATED_COLUMN)
private Date createdDate;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "last_sent", updatable = true, nullable = true)
private Date lastSent;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "resolved", updatable = true, nullable = true)
private Date resolved;
@Column(name = "uuid")
private String uuid;
@Column(name = "archived")
private boolean archived;
@Column(name = "name")
private String name;
public AlertVO() {
this.uuid = UUID.randomUUID().toString();
}
@Override
public long getId() {
return id;
}
@Override
public short getType() {
return type;
}
public void setType(short type) {
this.type = type;
}
@Override
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
public Long getClusterId() {
return clusterId;
}
public void setClusterId(Long clusterId) {
this.clusterId = clusterId;
}
@Override
public Long getPodId() {
return podId;
}
public void setPodId(Long podId) {
this.podId = podId;
}
@Override
public long getDataCenterId() {
return dataCenterId;
}
public void setDataCenterId(long dataCenterId) {
this.dataCenterId = dataCenterId;
}
@Override
public int getSentCount() {
return sentCount;
}
public void setSentCount(int sentCount) {
this.sentCount = sentCount;
}
@Override
public Date getCreatedDate() {
return createdDate;
}
public void setCreatedDate(Date createdDate) {
this.createdDate = createdDate;
}
@Override
public Date getLastSent() {
return lastSent;
}
public void setLastSent(Date lastSent) {
this.lastSent = lastSent;
}
@Override
public Date getResolved() {
return resolved;
}
public void setResolved(Date resolved) {
this.resolved = resolved;
}
@Override
public String getUuid() {
return this.uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
@Override
public boolean getArchived() {
return archived;
}
public void setArchived(Boolean archived) {
this.archived = archived;
}
@Override
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}