Refs #12211: Upgrade Joint Resource Registry model to PARTHENOS Entity model 3.0

Task-Url: https://support.d4science.org/issues/12211

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/parthenos-entities@169866 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2018-07-20 10:06:06 +00:00
parent fdc0601847
commit 82fa244f35
10 changed files with 84 additions and 2 deletions

View File

@ -1,8 +1,10 @@
package org.gcube.informationsystem.model.entity.resource.parthenos;
import org.gcube.informationsystem.model.entity.resource.cidoc.E40_Legal_Body;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PE25_RI_Consortium extends PE34_Team {
public interface PE25_RI_Consortium extends E40_Legal_Body {
}

View File

@ -1,8 +1,10 @@
package org.gcube.informationsystem.model.entity.resource.parthenos;
import org.gcube.informationsystem.model.entity.resource.cidoc.E7_Activity;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PE26_RI_Project extends PE35_Project {
public interface PE26_RI_Project extends E7_Activity {
}

View File

@ -0,0 +1,10 @@
package org.gcube.informationsystem.model.entity.resource.parthenos;
import org.gcube.informationsystem.model.entity.resource.cidoc.E55_Type;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PE39_Availability_Type extends E55_Type {
}

View File

@ -0,0 +1,10 @@
package org.gcube.informationsystem.model.entity.resource.parthenos;
import org.gcube.informationsystem.model.entity.resource.cidoc.E55_Type;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PE40_Programing_Language extends E55_Type {
}

View File

@ -0,0 +1,10 @@
package org.gcube.informationsystem.model.entity.resource.parthenos;
import org.gcube.informationsystem.model.entity.resource.cidoc.E7_Activity;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PE41_Award_Activity extends E7_Activity {
}

View File

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

View File

@ -0,0 +1,10 @@
package org.gcube.informationsystem.model.entity.resource.parthenos;
import org.gcube.informationsystem.model.entity.resource.cidoc.E55_Type;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PE43_Encoding_Type extends E55_Type {
}

View File

@ -0,0 +1,10 @@
package org.gcube.informationsystem.model.entity.resource.parthenos;
import org.gcube.informationsystem.model.entity.resource.cidoc.E55_Type;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PE44_Audience_Type extends E55_Type {
}

View File

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

View File

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