Implementing RR Service
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/information-system-model@129729 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
735181831b
commit
d7d64ff927
|
@ -1,11 +1,11 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package org.gcube.informationsystem.impl.entity;
|
||||
package org.gcube.informationsystem.impl;
|
||||
|
||||
import org.gcube.informationsystem.model.Header;
|
||||
import org.gcube.informationsystem.model.annotations.ISEmbeddedType;
|
||||
import org.gcube.informationsystem.model.annotations.ISProperty;
|
||||
import org.gcube.informationsystem.model.entity.Header;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/
|
|
@ -3,9 +3,10 @@
|
|||
*/
|
||||
package org.gcube.informationsystem.impl.entity;
|
||||
|
||||
import org.gcube.informationsystem.impl.HeaderImpl;
|
||||
import org.gcube.informationsystem.model.Header;
|
||||
import org.gcube.informationsystem.model.annotations.ISEntity;
|
||||
import org.gcube.informationsystem.model.entity.Entity;
|
||||
import org.gcube.informationsystem.model.entity.Header;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package org.gcube.informationsystem.model.entity;
|
||||
package org.gcube.informationsystem.model;
|
||||
|
||||
|
||||
/**
|
|
@ -3,6 +3,8 @@
|
|||
*/
|
||||
package org.gcube.informationsystem.model.entity;
|
||||
|
||||
import org.gcube.informationsystem.model.Header;
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
|
|||
public class TypeBinder {
|
||||
|
||||
private static final String DEFAULT_FACET_SUPERCLASS = "Facet";
|
||||
private static final String DEFAULT_RESOURCE_SUPERCLASS = "Entity";
|
||||
private static final String DEFAULT_RESOURCE_SUPERCLASS = "Resource";
|
||||
private static final String DEFAULT_ENTITY_SUPERCLASS = "Entity";
|
||||
|
||||
private static Logger logger = LoggerFactory.getLogger(TypeBinder.class);
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
package org.gcube.informationsystem.type;
|
||||
|
||||
import org.gcube.informationsystem.model.Header;
|
||||
import org.gcube.informationsystem.model.annotations.ISProperty;
|
||||
import org.gcube.informationsystem.model.annotations.ISFacet;
|
||||
import org.gcube.informationsystem.model.entity.Facet;
|
||||
import org.gcube.informationsystem.model.entity.Header;
|
||||
|
||||
@ISFacet(name="mysuperclassParent")
|
||||
public class EntityParentParent implements Facet{
|
||||
|
|
Loading…
Reference in New Issue