Creating Parthenos Entities Mapping to gCube Resources

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/parthenos-entities@141959 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-01-31 14:54:03 +00:00
parent 05b7bfd3ba
commit 19213f2faf
3 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,7 @@ import org.gcube.informationsystem.model.entity.facet.AccessPointFacet;
import org.gcube.informationsystem.model.entity.facet.cidoc.E51_Contact_Point;
/**
* @author Luca Frosini (ISTI - CNR)
* @author Luca Frosini (ISTI - CNR)
* This class comprises instances of web addresses and network addresses by
* which e-services can be accessed.
*/

View File

@ -2,7 +2,6 @@ package org.gcube.informationsystem.model.entity.resource.cidoc;
import org.gcube.informationsystem.model.entity.Resource;
/**
* @author Luca Frosini (ISTI - CNR)
* TODO check if can be removed

View File

@ -1,11 +1,16 @@
package org.gcube.informationsystem.model.relation;
import org.gcube.informationsystem.model.entity.resource.cidoc.D14_Software;
import org.gcube.informationsystem.model.entity.resource.parthenos.PE13_Software_Computing_E_Service;
import org.gcube.informationsystem.model.relation.isrelatedto.cidoc.P16_used_specific_object;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface PP14_runs_on_request extends P16_used_specific_object {
public interface PP14_runs_on_request
<Out extends PE13_Software_Computing_E_Service, In extends D14_Software>
extends P16_used_specific_object<Out, In> {
}