Added/fixed authorship on classes

This commit is contained in:
Luca Frosini 2021-01-20 17:17:57 +01:00
parent 5d1ae1ad20
commit 858a4bccb2
14 changed files with 15 additions and 11 deletions

View File

@ -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.consistsof.HasContact;
import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.Activates; import org.gcube.resourcemanagement.model.reference.relations.isrelatedto.Activates;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class GCubeModelRegistrationProvider implements RegistrationProvider { public class GCubeModelRegistrationProvider implements RegistrationProvider {
@Override @Override

View File

@ -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 * This resource allows to study and define the replication scenarios or to provide
* an adequate redundancy level to a VRE. * an adequate redundancy level to a VRE.
* *
* @author Luca Frosini (ISTI - CNR)
* https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#Site * https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#Site
*
* @author Luca Frosini (ISTI - CNR)
*
*/ */
@JsonDeserialize(as=SiteImpl.class) @JsonDeserialize(as=SiteImpl.class)
@ResourceSchema( @ResourceSchema(

View File

@ -6,7 +6,6 @@ import org.gcube.informationsystem.types.annotations.ISProperty;
* *
* @author Manuele Simi (ISTI - CNR) * @author Manuele Simi (ISTI - CNR)
* @author Luca Frosini (ISTI - CNR) * @author Luca Frosini (ISTI - CNR)
*
*/ */
public interface Named { public interface Named {

View File

@ -4,7 +4,6 @@ package org.gcube.resourcemanagement.model.reference.properties.utilities;
* A {@link TypedProperty} that can be validated. * A {@link TypedProperty} that can be validated.
* *
* @author Manuele Simi (ISTI CNR) * @author Manuele Simi (ISTI CNR)
*
*/ */
public interface ValidatedTypedProperty<T,V> extends TypedProperty<T, V> { public interface ValidatedTypedProperty<T,V> extends TypedProperty<T, V> {

View File

@ -4,7 +4,6 @@ package org.gcube.resourcemanagement.model.reference.properties.utilities;
* Result of a {@link PropertyValidator}. * Result of a {@link PropertyValidator}.
* *
* @author Manuele Simi (ISTI CNR) * @author Manuele Simi (ISTI CNR)
*
*/ */
public class Validation { public class Validation {

View File

@ -13,7 +13,6 @@ import org.gcube.resourcemanagement.model.reference.entities.resources.Service;
* *
* @author Manuele Simi (ISTI - CNR) * @author Manuele Simi (ISTI - CNR)
* @author Luca Frosini (ISTI - CNR) * @author Luca Frosini (ISTI - CNR)
*
*/ */
@JsonDeserialize(as=HasRemoveActionImpl.class) @JsonDeserialize(as=HasRemoveActionImpl.class)
@TypeMetadata( @TypeMetadata(

View File

@ -16,6 +16,7 @@ import org.gcube.resourcemanagement.model.reference.entities.facets.CoverageFace
* coverage information, e.g., the geographic area indication for the dataset. * coverage information, e.g., the geographic area indication for the dataset.
* *
* https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#HasSpatialCoverage * https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#HasSpatialCoverage
*
* @author Luca Frosini (ISTI - CNR) * @author Luca Frosini (ISTI - CNR)
*/ */
@JsonDeserialize(as=HasSpatialCoverageImpl.class) @JsonDeserialize(as=HasSpatialCoverageImpl.class)

View File

@ -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 * For instance, a software can consist of one or more {@link SoftwareFacet} but the one
* related with IsIdentifiedBy represents the identify of the software. * 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 * https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#IsIdentifiedBy
*
* @author Luca Frosini (ISTI - CNR)
*/ */
@JsonDeserialize(as=IsIdentifiedByImpl.class) @JsonDeserialize(as=IsIdentifiedByImpl.class)
@TypeMetadata( @TypeMetadata(

View File

@ -19,6 +19,9 @@ import org.junit.Test;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class ISMDiscoveryTest { public class ISMDiscoveryTest {
private static final Logger logger = LoggerFactory.getLogger(ISMDiscoveryTest.class); private static final Logger logger = LoggerFactory.getLogger(ISMDiscoveryTest.class);

View File

@ -20,7 +20,6 @@ import org.junit.runners.BlockJUnit4ClassRunner;
* Test cases for {@link ActionFacet} * Test cases for {@link ActionFacet}
* *
* @author Manuele Simi (ISTI CNR) * @author Manuele Simi (ISTI CNR)
*
*/ */
@RunWith(BlockJUnit4ClassRunner.class) @RunWith(BlockJUnit4ClassRunner.class)
public class ActionFacetTest { public class ActionFacetTest {

View File

@ -24,7 +24,6 @@ import org.slf4j.LoggerFactory;
/** /**
* @author Luca Frosini (ISTI - CNR) * @author Luca Frosini (ISTI - CNR)
*
*/ */
public class PolymorphismTest { public class PolymorphismTest {

View File

@ -15,6 +15,9 @@ import org.junit.Test;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class ResourceTypeDefintionsTest { public class ResourceTypeDefintionsTest {
private static final Logger logger = LoggerFactory.getLogger(ResourceTypeDefintionsTest.class); private static final Logger logger = LoggerFactory.getLogger(ResourceTypeDefintionsTest.class);

View File

@ -16,7 +16,6 @@ import org.junit.runners.BlockJUnit4ClassRunner;
* Test cases for {@link EnumStringProperty}. * Test cases for {@link EnumStringProperty}.
* *
* @author Manuele Simi (ISTI CNR) * @author Manuele Simi (ISTI CNR)
*
*/ */
@RunWith(BlockJUnit4ClassRunner.class) @RunWith(BlockJUnit4ClassRunner.class)
public class EnumStringPropertyTest { public class EnumStringPropertyTest {

View File

@ -14,7 +14,6 @@ import org.junit.runners.BlockJUnit4ClassRunner;
* Test cases for {@link RegexProperty}. * Test cases for {@link RegexProperty}.
* *
* @author Manuele Simi (ISTI CNR) * @author Manuele Simi (ISTI CNR)
*
*/ */
@RunWith(BlockJUnit4ClassRunner.class) @RunWith(BlockJUnit4ClassRunner.class)
public class RegexPropertyTest { public class RegexPropertyTest {