de.fraunhofer.iosb.ilt.faaast.registry.jpa.model.JpaEmbeddedDataSpecification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence-jpa Show documentation
Show all versions of persistence-jpa Show documentation
Relational database implementation of the FA³ST Registry.
The newest version!
/*
* Copyright (c) 2021 Fraunhofer IOSB, eine rechtlich nicht selbstaendige
* Einrichtung der Fraunhofer-Gesellschaft zur Foerderung der angewandten
* Forschung e.V.
* 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 de.fraunhofer.iosb.ilt.faaast.registry.jpa.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import de.fraunhofer.iosb.ilt.faaast.registry.jpa.util.ModelTransformationHelper;
import java.util.Objects;
import org.eclipse.digitaltwin.aas4j.v3.model.DataSpecificationIec61360;
import org.eclipse.digitaltwin.aas4j.v3.model.EmbeddedDataSpecification;
import org.eclipse.digitaltwin.aas4j.v3.model.builder.EmbeddedDataSpecificationBuilder;
import org.eclipse.digitaltwin.aas4j.v3.model.impl.DefaultEmbeddedDataSpecification;
/**
* Registry Descriptor JPA implementation for JpaEmbeddedDataSpecification.
*/
public class JpaEmbeddedDataSpecification extends DefaultEmbeddedDataSpecification {
@JsonIgnore
private String id;
@JsonIgnore
private DataSpecificationIec61360 dataSpecificationContentIec61360;
public JpaEmbeddedDataSpecification() {
id = null;
dataSpecificationContentIec61360 = null;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public DataSpecificationIec61360 getDataSpecificationContentIec61360() {
return dataSpecificationContentIec61360;
}
/**
* Set DataSpecificationContentIec61360.
*
* @param value The desired DataSpecificationContentIec61360.
*/
public void setDataSpecificationContentIec61360(DataSpecificationIec61360 value) {
dataSpecificationContentIec61360 = value;
setDataSpecificationContent(value);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), id, dataSpecificationContentIec61360);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
else if (obj == null) {
return false;
}
else if (this.getClass() != obj.getClass()) {
return false;
}
else {
JpaEmbeddedDataSpecification other = (JpaEmbeddedDataSpecification) obj;
return super.equals(obj)
&& Objects.equals(this.id, other.id)
&& Objects.equals(dataSpecificationContentIec61360, other.dataSpecificationContentIec61360);
}
}
public abstract static class AbstractBuilder>
extends EmbeddedDataSpecificationBuilder {
public B id(String value) {
getBuildingInstance().setId(value);
return getSelf();
}
public B dataSpecificationContentIec61360(DataSpecificationIec61360 value) {
getBuildingInstance().setDataSpecificationContentIec61360(value);
return getSelf();
}
public B from(EmbeddedDataSpecification other) {
if (Objects.nonNull(other)) {
dataSpecification(ModelTransformationHelper.convertReference(other.getDataSpecification()));
if (other.getDataSpecificationContent() instanceof DataSpecificationIec61360 iec61360) {
dataSpecificationContentIec61360(ModelTransformationHelper.convertDataSpecificationIec61360(iec61360));
}
}
return getSelf();
}
}
public static class Builder extends AbstractBuilder {
@Override
protected Builder getSelf() {
return this;
}
@Override
protected JpaEmbeddedDataSpecification newBuildingInstance() {
return new JpaEmbeddedDataSpecification();
}
}
}