blob: 062726ec18c166851cd2666bb3ce2a7d9cabea9a [file] [log] [blame]
/*
* Copyright 2017 Kuelap, Inc.
*
* 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.
*/
package io.mifos.portfolio.service.internal.repository;
import io.mifos.core.mariadb.util.LocalDateTimeConverter;
import javax.persistence.*;
import java.time.LocalDateTime;
import java.util.Objects;
/**
* @author Myrle Krantz
*/
@SuppressWarnings("unused")
@Entity
@Table(name = "bastet_case_commands")
public class CaseCommandEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private Long id;
@Column(name = "case_id")
private Long caseId;
@Column(name = "action_name")
private String actionName;
@Column(name = "created_on")
@Convert(converter = LocalDateTimeConverter.class)
private LocalDateTime createdOn;
@Column(name = "created_by")
private String createdBy;
@Column(name = "thoth_transaction_uq")
private String transactionUniqueifier;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getCaseId() {
return caseId;
}
public void setCaseId(Long caseId) {
this.caseId = caseId;
}
public String getActionName() {
return actionName;
}
public void setActionName(String actionName) {
this.actionName = actionName;
}
public LocalDateTime getCreatedOn() {
return createdOn;
}
public void setCreatedOn(LocalDateTime createdOn) {
this.createdOn = createdOn;
}
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public String getTransactionUniqueifier() {
return transactionUniqueifier;
}
public void setTransactionUniqueifier(String transactionUniqueifier) {
this.transactionUniqueifier = transactionUniqueifier;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CaseCommandEntity that = (CaseCommandEntity) o;
return Objects.equals(caseId, that.caseId) &&
Objects.equals(actionName, that.actionName) &&
Objects.equals(transactionUniqueifier, that.transactionUniqueifier);
}
@Override
public int hashCode() {
return Objects.hash(caseId, actionName, transactionUniqueifier);
}
}