Domain.java
package org.dynamoframework.functional.domain;
/*-
* #%L
* Dynamo Framework
* %%
* Copyright (C) 2014 - 2024 Open Circle Solutions
* %%
* 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%
*/
import jakarta.persistence.*;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Size;
import lombok.*;
import org.dynamoframework.domain.AbstractEntity;
import org.dynamoframework.domain.model.EditableType;
import org.dynamoframework.domain.model.VisibilityType;
import org.dynamoframework.domain.model.annotation.Attribute;
import org.dynamoframework.domain.model.annotation.Model;
import org.dynamoframework.domain.model.annotation.SearchMode;
import java.util.Objects;
/**
* Base class for reference information.
*
* @author Patrick Deenen (patrick@opencircle.solutions)
*/
@Getter
@Setter
@Inheritance
@DiscriminatorColumn(name = "type")
@Entity(name = "domain")
@ToString(onlyExplicitlyIncluded = true)
@Model(displayProperty = "name", sortOrder = "name asc")
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public abstract class Domain extends AbstractEntity<Integer> {
public static final String ATTRIBUTE_NAME = "name";
public static final String ATTRIBUTE_CODE = "code";
private static final long serialVersionUID = 1598343469161718498L;
@Id
@ToString.Include
private Integer id;
@Attribute(visibleInForm = VisibilityType.HIDE, editable = EditableType.READ_ONLY,
visibleInGrid = VisibilityType.HIDE)
@Column(name = "type", insertable = false, updatable = false)
private String type;
/**
* By default, we only use "name" so the code is hidden
*/
@Attribute(visibleInForm = VisibilityType.HIDE)
@Size(max = 5)
@ToString.Include
private String code;
@Size(max = 255)
@NotNull
@Attribute(maxLength = 255, searchable = SearchMode.ALWAYS)
@ToString.Include
private String name;
protected Domain(String code, String name) {
this.code = code;
this.name = name;
}
@Override
public int hashCode() {
return Objects.hashCode(id);
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof final Domain other)) {
return false;
}
if (!this.getClass().equals(obj.getClass())) {
return false;
}
if (this.id != null && other.id != null) {
// first, check if the IDs match
return Objects.equals(this.id, other.id);
} else {
// if this is not the case, check for code and type
return Objects.equals(this.code, other.code);
}
}
}