Creating Parthenos Entities Mapping to gCube Resources

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/parthenos-entities@141929 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-01-30 18:05:05 +00:00
parent ca3de752e2
commit 6fc7408c22
9 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package org.gcube.informationsystem.parthenos.model.relation;
public interface PP11_curates_volatile_digital_object extends PP32_curates {
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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