Creating Parthenos Entities Mapping to gCube Resources

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/parthenos-entities@141937 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-01-31 09:52:58 +00:00
parent f10774260b
commit 577a502715
6 changed files with 12 additions and 6 deletions

View File

@ -1,11 +1,13 @@
package org.gcube.informationsystem.parthenos.model.entity.facet;
import org.gcube.informationsystem.model.entity.facet.AccessPointFacet;
import org.gcube.informationsystem.parthenos.model.entity.facet.cidoc.E51_Contact_Point;
/**
* @author Luca Frosini (ISTI - CNR)
* This class comprises instances of web addresses and network addresses by
* which e-services can be accessed.
*/
public interface PE29_Access_Point extends E51_Contact_Point {
public interface PE29_Access_Point extends E51_Contact_Point, AccessPointFacet {
}

View File

@ -1,10 +1,10 @@
package org.gcube.informationsystem.parthenos.model.entity.facet.cidoc;
import org.gcube.informationsystem.model.entity.facet.ContactFacet;
import org.gcube.informationsystem.model.entity.Facet;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface E51_Contact_Point extends ContactFacet {
public interface E51_Contact_Point extends Facet {
}

View File

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

View File

@ -5,6 +5,8 @@ import org.gcube.informationsystem.parthenos.model.entity.resource.PE8_E_Service
/**
* @author Luca Frosini (ISTI - CNR)
* Links an instance of a PE8 E-Service to the web address at which the
* e-service can be accessed.
*/
public interface PP28_has_designated_access_point<Out extends PE8_E_Service, In extends PE29_Access_Point>
extends P1_is_identified_by<Out, In> {

View File

@ -1,4 +1,4 @@
package org.gcube.informationsystem.parthenos.model.relation;
package org.gcube.informationsystem.parthenos.model.relation.consistsof.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.consistsof.inverse;
/**