blob: ed1a8295a4a52971d4ffc67d8c5ae3e04d1b3446 [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 org.apache.custos.user.profile.persistance.model;
import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
import javax.persistence.*;
import java.util.Date;
/**
* Keeps track of attribute updated metadata
*/
@Entity
@Table(name = "attribute_update_metadata")
@EntityListeners(AuditingEntityListener.class)
public class AttributeUpdateMetadata {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(nullable = false)
private String updatedFieldKey;
@Column(nullable = false)
private String updatedFieldValue;
@Column(nullable = false)
@Temporal(TemporalType.TIMESTAMP)
@CreatedDate
private Date updatedAt;
@Column(nullable = false)
private String updatedBy;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "user_profile_id")
private UserProfile userProfile;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUpdatedFieldKey() {
return updatedFieldKey;
}
public void setUpdatedFieldKey(String updatedFieldKey) {
this.updatedFieldKey = updatedFieldKey;
}
public String getUpdatedFieldValue() {
return updatedFieldValue;
}
public void setUpdatedFieldValue(String updatedFieldValue) {
this.updatedFieldValue = updatedFieldValue;
}
public Date getUpdatedAt() {
return updatedAt;
}
public String getUpdatedBy() {
return updatedBy;
}
public void setUpdatedBy(String updatedBy) {
this.updatedBy = updatedBy;
}
public void setUpdatedAt(Date updatedAt) {
this.updatedAt = updatedAt;
}
public UserProfile getUserProfile() {
return userProfile;
}
public void setUserProfile(UserProfile userProfile) {
this.userProfile = userProfile;
}
}