hu.icellmobilsoft.coffee.model.base.AbstractEntity Maven / Gradle / Ivy
/*-
* #%L
* Coffee
* %%
* Copyright (C) 2020 i-Cell Mobilsoft Zrt.
* %%
* 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.
* #L%
*/
package hu.icellmobilsoft.coffee.model.base;
import java.beans.PropertyDescriptor;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Serializable;
import java.io.Writer;
import java.sql.Blob;
import java.sql.Clob;
import jakarta.persistence.Column;
import jakarta.persistence.MappedSuperclass;
import jakarta.persistence.Transient;
import jakarta.persistence.Version;
import jakarta.validation.constraints.NotNull;
import org.apache.commons.beanutils.PropertyUtils;
import org.apache.commons.lang3.ClassUtils;
import org.apache.commons.lang3.builder.ToStringBuilder;
import hu.icellmobilsoft.coffee.se.logging.Logger;
/**
* Base class for all entities.
*
* @author imre.scheffer
* @since 1.0.0
*/
@MappedSuperclass
public abstract class AbstractEntity implements IVersionable, Serializable {
private static final long serialVersionUID = 1L;
/**
* Default constructor, constructs a new object.
*/
public AbstractEntity() {
super();
}
/**
* The version of the entity for optimistic lock checking
*/
@Column(name = "X__VERSION", precision = 20, scale = 0)
@NotNull
@Version
private long version;
/**
* Transient interval version
*/
@Transient
private Long internalVersion;
/**
* Getter for the field {@code version}.
*
* @return version
*/
@Override
public long getVersion() {
return version;
}
/**
* Setter for the field {@code version}.
*
* @param version
* version
*/
@Override
public void setVersion(long version) {
if (internalVersion == null || this.version != version) {
internalVersion = this.version;
}
this.version = version;
}
/**
* rollbackVersion.
*/
public void rollbackVersion() {
if (internalVersion != null) {
version = internalVersion;
internalVersion = null;
}
}
/**
* updateVersion.
*/
public void updateVersion() {
internalVersion = version;
}
/**
* toString.
*/
@Override
public String toString() {
ToStringBuilder s = new ToStringBuilder(this);
for (PropertyDescriptor property : PropertyUtils.getPropertyDescriptors(this)) {
String name = property.getName();
Class> propertyType = property.getPropertyType();
if (ClassUtils.isAssignable(propertyType, AbstractEntity.class)) {
// dependency kapcsolatokon ne menjen vegig, ne lazy-zzon
s.append(name, propertyType.getSimpleName());
} else if (propertyType == byte[].class || propertyType == Blob.class || propertyType == Clob.class || propertyType == InputStream.class
|| propertyType == OutputStream.class || propertyType == Reader.class || propertyType == Writer.class) {
// nagy adatmennyiseggel ne foglalkozzon, stream-eket ne nyektesse
s.append(name, propertyType.getSimpleName());
} else {
try {
s.append(name, property.getReadMethod().invoke(this));
} catch (Exception e) {
Logger.getLogger(getClass()).warn("Error in toString for property [{0}]: [{1}]", name, e.getLocalizedMessage());
}
}
}
return s.toString();
// return ReflectionToStringBuilder.toString(this, ToStringStyle.DEFAULT_STYLE);
}
}