// 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.usage; import java.util.Date; 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 org.apache.cloudstack.api.InternalIdentity; @Entity @Table(name = "usage_job") public class UsageJobVO implements InternalIdentity { public static final int JOB_TYPE_RECURRING = 0; public static final int JOB_TYPE_SINGLE = 1; public static final int JOB_NOT_SCHEDULED = 0; public static final int JOB_SCHEDULED = 1; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id") private Long id; @Column(name = "host") private String host; @Column(name = "pid") private Integer pid; @Column(name = "job_type") private int jobType; @Column(name = "scheduled") private int scheduled; @Column(name = "start_millis") private long startMillis; @Column(name = "end_millis") private long endMillis; @Column(name = "exec_time") private long execTime; @Temporal(TemporalType.TIMESTAMP) @Column(name = "start_date") private Date startDate; @Temporal(TemporalType.TIMESTAMP) @Column(name = "end_date") private Date endDate; @Column(name = "success") private Boolean success; @Temporal(TemporalType.TIMESTAMP) @Column(name = "heartbeat") private Date heartbeat; public UsageJobVO() { } @Override public long getId() { return id; } public void setId(Long id) { this.id = id; } public String getHost() { return host; } public void setHost(String host) { this.host = host; } public Integer getPid() { return pid; } public void setPid(Integer pid) { this.pid = pid; } public int getJobType() { return jobType; } public void setJobType(int jobType) { this.jobType = jobType; } public int getScheduled() { return scheduled; } public void setScheduled(int scheduled) { this.scheduled = scheduled; } public long getStartMillis() { return startMillis; } public void setStartMillis(long startMillis) { this.startMillis = startMillis; } public long getEndMillis() { return endMillis; } public void setEndMillis(long endMillis) { this.endMillis = endMillis; } public long getExecTime() { return execTime; } public void setExecTime(long execTime) { this.execTime = execTime; } public Date getStartDate() { return startDate; } public void setStartDate(Date startDate) { this.startDate = startDate; } public Date getEndDate() { return endDate; } public void setEndDate(Date endDate) { this.endDate = endDate; } public Boolean getSuccess() { return success; } public void setSuccess(Boolean success) { this.success = success; } public Date getHeartbeat() { return heartbeat; } public void setHeartbeat(Date heartbeat) { this.heartbeat = heartbeat; } }