de.digitalcollections.cudami.model.impl.identifiable.entity.EntityImpl Maven / Gradle / Ivy
package de.digitalcollections.cudami.model.impl.identifiable.entity;
import de.digitalcollections.cudami.model.api.identifiable.IdentifiableType;
import de.digitalcollections.cudami.model.api.identifiable.entity.Entity;
import de.digitalcollections.cudami.model.api.identifiable.entity.EntityType;
import de.digitalcollections.cudami.model.impl.identifiable.IdentifiableImpl;
public class EntityImpl extends IdentifiableImpl implements Entity {
protected EntityType entityType;
public EntityImpl() {
this.type = IdentifiableType.ENTITY;
}
@Override
public EntityType getEntityType() {
return entityType;
}
@Override
public void setEntityType(EntityType entityType) {
this.entityType = entityType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy