Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Feature Request: Cleaner interfaces #2

@brianjahnke

Description

@brianjahnke

Hi,

all Infomodel Object interfaces seem to share common functions, such as getId(), toRdf, setProperties and getProperties.

  1. I would like to propose to segregate the "fat" IDS interfaces and rather compose the IDS interfaces by using single purpose interfaces. E.g.:
// Maybe even make key and values generic?
public interface DynamicProperties<K, V> {
    void setProperty(K key, V value);
    Map<K, V> getProperties();
}

By defining such it would be possible to operate on IDS objects in a generic way. E.g. call toRdf on all IDS objects regardless if they are ResourceCatalogs or Artifacts (which is currently not possible, see definition of Catalog and Artifact).

  1. Further i would like to propose to remove duplications in interface definitions.
    e.g. When looking at the definition of a ResourceCatalog it definies functions like getId, toRdf. But those are already definied in the parent interface Catalog.

It gets even more complicated when looking at classes like Representation that inherit multiple interfaces, but all are defining those functions. This makes interfaces larger then they need to be and it obscures how a e.g. ResourceCatalog differs from a Catalog.

  1. Maybe this could be fixed by defining a common shared base interface? Something like IdsObject? This IdsObject would inherit those single purpose interface (defined in 1) and every IDS Object would inherit from IdsObject. This would also allow to narrow the scope of generic functions and classes because it would allow the usage of <? extends IdsObject>. At the moment such scoping is not possible since the only common interface is the java base class Object.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions