/**
* Copyright (C) 2012 KRM Associates, Inc. healtheme@krminc.com
*
* Licensed 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.
*/
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.krminc.phr.domain.clinical;
import java.io.Serializable;
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.commons.lang.builder.StandardToStringStyle;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
*
* @author chaz
*/
@Entity
@Table(name="phr.rec_ccr_datetime")
public class CcrDateTime implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="datetime_id")
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@Column(name="type_text")
protected String typeText;
@Temporal(TemporalType.TIMESTAMP)
@Column(name="exact_date_time")
protected Date exactDateTime;
@Column(name="approx_date_time")
protected String approxDateTime;
@Column(name="rangeDateTime")
protected String rangeDateTime;
public String getApproxDateTime() {
return approxDateTime;
}
public void setApproxDateTime(String approxDateTime) {
this.approxDateTime = approxDateTime;
}
public Date getExactDateTime() {
return exactDateTime;
}
public void setExactDateTime(Date exactDateTime) {
this.exactDateTime = exactDateTime;
}
public String getRangeDateTime() {
return rangeDateTime;
}
public void setRangeDateTime(String rangeDateTime) {
this.rangeDateTime = rangeDateTime;
}
public String getTypeText() {
return typeText;
}
public void setTypeText(String typeText) {
this.typeText = typeText;
}
@Override
public int hashCode() {
int hash = 0;
hash += (id != null ? id.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof CcrDateTime)) {
return false;
}
CcrDateTime other = (CcrDateTime) object;
if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
return false;
}
return true;
}
@Override
public String toString() {
final StandardToStringStyle style = new StandardToStringStyle();
style.setNullText("---NULL---");
style.setFieldSeparator(";\n");
style.setArrayStart("{{{");
style.setArrayEnd("}}}");
style.setArraySeparator("|");
style.setFieldNameValueSeparator(":");
return ToStringBuilder.reflectionToString(this, style);
}
}