Creating Parthenos Entities Mapping to gCube Resources

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/parthenos-entities@141927 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-01-30 17:53:49 +00:00
parent eabc9e8e08
commit ba35940a0c
19 changed files with 168 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,20 @@
package org.gcube.informationsystem.parthenos.model.relation;
import java.net.URI;
import java.util.Collection;
import javax.xml.datatype.XMLGregorianCalendar;
/**\n * @author Luca Frosini (ISTI - CNR)\n */
public interface PP1_currently_offers extends P9_consists_of {
/* ***************************************************
* Common interfaces
*/
OWLNamedIndividual getOwlIndividual();
OWLOntology getOwlOntology();
void delete();
}