Added/fixed authorship on classes
This commit is contained in:
parent
5d1ae1ad20
commit
858a4bccb2
|
@ -10,6 +10,9 @@ import org.gcube.resourcemanagement.model.reference.properties.ValueSchema;
|
|||
import org.gcube.resourcemanagement.model.reference.relations.consistsof.HasContact;
|
||||
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.Activates;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public class GCubeModelRegistrationProvider implements RegistrationProvider {
|
||||
|
||||
@Override
|
||||
|
|
|
@ -33,8 +33,10 @@ import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.IsOwne
|
|||
* This resource allows to study and define the replication scenarios or to provide
|
||||
* an adequate redundancy level to a VRE.
|
||||
*
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
* https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#Site
|
||||
*
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*
|
||||
*/
|
||||
@JsonDeserialize(as=SiteImpl.class)
|
||||
@ResourceSchema(
|
||||
|
|
|
@ -6,7 +6,6 @@ import org.gcube.informationsystem.types.annotations.ISProperty;
|
|||
*
|
||||
* @author Manuele Simi (ISTI - CNR)
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*
|
||||
*/
|
||||
public interface Named {
|
||||
|
||||
|
|
|
@ -4,7 +4,6 @@ package org.gcube.resourcemanagement.model.reference.properties.utilities;
|
|||
* A {@link TypedProperty} that can be validated.
|
||||
*
|
||||
* @author Manuele Simi (ISTI CNR)
|
||||
*
|
||||
*/
|
||||
public interface ValidatedTypedProperty<T,V> extends TypedProperty<T, V> {
|
||||
|
||||
|
|
|
@ -4,7 +4,6 @@ package org.gcube.resourcemanagement.model.reference.properties.utilities;
|
|||
* Result of a {@link PropertyValidator}.
|
||||
*
|
||||
* @author Manuele Simi (ISTI CNR)
|
||||
*
|
||||
*/
|
||||
public class Validation {
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@ import org.gcube.resourcemanagement.model.reference.entities.resources.Service;
|
|||
*
|
||||
* @author Manuele Simi (ISTI - CNR)
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*
|
||||
*/
|
||||
@JsonDeserialize(as=HasRemoveActionImpl.class)
|
||||
@TypeMetadata(
|
||||
|
|
|
@ -16,6 +16,7 @@ import org.gcube.resourcemanagement.model.reference.entities.facets.CoverageFace
|
|||
* coverage information, e.g., the geographic area indication for the dataset.
|
||||
*
|
||||
* https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#HasSpatialCoverage
|
||||
*
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
@JsonDeserialize(as=HasSpatialCoverageImpl.class)
|
||||
|
|
|
@ -23,9 +23,9 @@ import org.gcube.resourcemanagement.model.reference.entities.resources.GCubeReso
|
|||
* For instance, a software can consist of one or more {@link SoftwareFacet} but the one
|
||||
* related with IsIdentifiedBy represents the identify of the software.
|
||||
*
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*
|
||||
* https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#IsIdentifiedBy
|
||||
*
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
@JsonDeserialize(as=IsIdentifiedByImpl.class)
|
||||
@TypeMetadata(
|
||||
|
|
|
@ -19,6 +19,9 @@ import org.junit.Test;
|
|||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public class ISMDiscoveryTest {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(ISMDiscoveryTest.class);
|
||||
|
|
|
@ -20,7 +20,6 @@ import org.junit.runners.BlockJUnit4ClassRunner;
|
|||
* Test cases for {@link ActionFacet}
|
||||
*
|
||||
* @author Manuele Simi (ISTI CNR)
|
||||
*
|
||||
*/
|
||||
@RunWith(BlockJUnit4ClassRunner.class)
|
||||
public class ActionFacetTest {
|
||||
|
|
|
@ -24,7 +24,6 @@ import org.slf4j.LoggerFactory;
|
|||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*
|
||||
*/
|
||||
public class PolymorphismTest {
|
||||
|
||||
|
|
|
@ -15,6 +15,9 @@ import org.junit.Test;
|
|||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public class ResourceTypeDefintionsTest {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(ResourceTypeDefintionsTest.class);
|
||||
|
|
|
@ -16,7 +16,6 @@ import org.junit.runners.BlockJUnit4ClassRunner;
|
|||
* Test cases for {@link EnumStringProperty}.
|
||||
*
|
||||
* @author Manuele Simi (ISTI CNR)
|
||||
*
|
||||
*/
|
||||
@RunWith(BlockJUnit4ClassRunner.class)
|
||||
public class EnumStringPropertyTest {
|
||||
|
|
|
@ -14,7 +14,6 @@ import org.junit.runners.BlockJUnit4ClassRunner;
|
|||
* Test cases for {@link RegexProperty}.
|
||||
*
|
||||
* @author Manuele Simi (ISTI CNR)
|
||||
*
|
||||
*/
|
||||
@RunWith(BlockJUnit4ClassRunner.class)
|
||||
public class RegexPropertyTest {
|
||||
|
|
Loading…
Reference in New Issue