Creating Parthenos Entities Mapping to gCube Resources
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/parthenos-entities@141941 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
5e686b75e0
commit
0adf87895a
|
@ -6,6 +6,6 @@ import org.gcube.informationsystem.model.entity.resource.Software;
|
|||
* @author Luca Frosini (ISTI - CNR)
|
||||
* TODO check if can be removed
|
||||
*/
|
||||
public interface D14_Software extends Software {
|
||||
public interface D14_Software extends D1_Digital_Object, Software {
|
||||
|
||||
}
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.relation.isrelatedto.P106_is_composed_of;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP18_has_digital_object_part extends P106_is_composed_of {
|
||||
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse.P106i_forms_part_of;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP18i_is_digital_object_part_of extends P106i_forms_part_of {
|
||||
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.relation.isrelatedto.PP16_has_persistent_digital_object_part;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP19_has_persistent_software_part extends
|
||||
PP16_has_persistent_digital_object_part {
|
||||
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse.PP16i_is_persistent_digital_object_part_of;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP19i_is_persistent_software_part_of extends
|
||||
PP16i_is_persistent_digital_object_part_of {
|
||||
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.relation.isrelatedto.PP16_has_persistent_digital_object_part;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP20_has_persistent_dataset_part extends
|
||||
PP16_has_persistent_digital_object_part {
|
||||
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse.PP16i_is_persistent_digital_object_part_of;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP20i_is_persistent_dataset_part_of extends
|
||||
PP16i_is_persistent_digital_object_part_of {
|
||||
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP21_has_software_part extends PP18_has_digital_object_part {
|
||||
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP23_has_dataset_part extends PP18_has_digital_object_part {
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.PE20_Volatile_Digital_Object;
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.cidoc.D1_Digital_Object;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP18_has_digital_object_part<Out extends PE20_Volatile_Digital_Object, In extends D1_Digital_Object>
|
||||
extends P106_is_composed_of<Out, In> {
|
||||
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.PE21_Persistent_Software;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP19_has_persistent_software_part
|
||||
<Out extends PE21_Persistent_Software, In extends PE21_Persistent_Software>
|
||||
extends PP16_has_persistent_digital_object_part<Out, In> {
|
||||
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.PE22_Persistent_Dataset;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP20_has_persistent_dataset_part
|
||||
<Out extends PE22_Persistent_Dataset, In extends PE22_Persistent_Dataset>
|
||||
extends PP16_has_persistent_digital_object_part<Out, In> {
|
||||
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.PE23_Volatile_Software;
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.cidoc.D14_Software;
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP21_has_software_part
|
||||
<Out extends PE23_Volatile_Software, In extends D14_Software>
|
||||
extends PP18_has_digital_object_part<Out, In> {
|
||||
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto;
|
||||
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.PE18_Dataset;
|
||||
import org.gcube.informationsystem.parthenos.model.entity.resource.PE24_Volatile_Dataset;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP23_has_dataset_part<Out extends PE24_Volatile_Dataset, In extends PE18_Dataset>
|
||||
extends PP18_has_digital_object_part<Out, In> {
|
||||
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP18i_is_digital_object_part_of extends P106i_forms_part_of {
|
||||
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP19i_is_persistent_software_part_of extends
|
||||
PP16i_is_persistent_digital_object_part_of {
|
||||
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public interface PP20i_is_persistent_dataset_part_of extends
|
||||
PP16i_is_persistent_digital_object_part_of {
|
||||
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse;
|
||||
|
||||
|
||||
|
||||
/**
|
|
@ -1,4 +1,5 @@
|
|||
package org.gcube.informationsystem.parthenos.model.relation;
|
||||
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse;
|
||||
|
||||
|
||||
|
||||
/**
|
Loading…
Reference in New Issue