Creating Parthenos Entities Mapping to gCube Resources

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/parthenos-entities@141938 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-01-31 10:24:15 +00:00
parent 577a502715
commit 5e686b75e0
13 changed files with 40 additions and 21 deletions

View File

@ -1,6 +1,7 @@
package org.gcube.informationsystem.parthenos.model.entity.resource;
/**
* @author Luca Frosini (ISTI - CNR)
*/

View File

@ -1,9 +0,0 @@
package org.gcube.informationsystem.parthenos.model.relation;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface P106_is_composed_of {
}

View File

@ -1,10 +0,0 @@
package org.gcube.informationsystem.parthenos.model.relation;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PP16_has_persistent_digital_object_part extends
P106_is_composed_of {
}

View File

@ -1,5 +1,7 @@
package org.gcube.informationsystem.parthenos.model.relation;
import org.gcube.informationsystem.parthenos.model.relation.isrelatedto.P106_is_composed_of;
/**
* @author Luca Frosini (ISTI - CNR)

View File

@ -1,5 +1,7 @@
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)

View File

@ -1,5 +1,7 @@
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)

View File

@ -1,5 +1,7 @@
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)

View File

@ -1,5 +1,7 @@
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)

View File

@ -1,5 +1,7 @@
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)

View File

@ -0,0 +1,12 @@
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto;
import org.gcube.informationsystem.model.entity.Resource;
import org.gcube.informationsystem.model.relation.IsRelatedTo;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface P106_is_composed_of<Out extends Resource, In extends Resource>
extends IsRelatedTo<Out, In> {
}

View File

@ -0,0 +1,12 @@
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto;
import org.gcube.informationsystem.parthenos.model.entity.resource.PE19_Persistent_Digital_Object;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PP16_has_persistent_digital_object_part
<Out extends PE19_Persistent_Digital_Object, In extends PE19_Persistent_Digital_Object>
extends P106_is_composed_of<Out, In> {
}

View File

@ -1,4 +1,4 @@
package org.gcube.informationsystem.parthenos.model.relation;
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse;
/**
* @author Luca Frosini (ISTI - CNR)

View File

@ -1,4 +1,5 @@
package org.gcube.informationsystem.parthenos.model.relation;
package org.gcube.informationsystem.parthenos.model.relation.isrelatedto.inverse;
/**