You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
all Infomodel Object interfaces seem to share common functions, such as getId(), toRdf, setProperties and getProperties.
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).
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.
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.
The text was updated successfully, but these errors were encountered:
Hi Brian,
almost as in #1, we have started working on this suggestion and created some generalizing interfaces. The first improvements, covering most of what you suggest here, should be ready in roughly three weeks from today.
Thanks for the great suggestions!
Hi,
all Infomodel Object interfaces seem to share common functions, such as
getId()
,toRdf
,setProperties
andgetProperties
.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).
e.g. When looking at the definition of a ResourceCatalog it definies functions like
getId
,toRdf
. But those are already definied in the parent interfaceCatalog
.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 aCatalog
.IdsObject
? This IdsObject would inherit those single purpose interface (defined in 1) and every IDS Object would inherit fromIdsObject
. 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 classObject
.The text was updated successfully, but these errors were encountered: