Fixed types name

This commit is contained in:
Luca Frosini 2021-01-19 14:42:07 +01:00
parent b3130ac3eb
commit aeb4a54967
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ import org.gcube.resourcemanagement.model.reference.entities.resources.Service;
*/
@JsonDeserialize(as=HasAddActionImpl.class)
@TypeMetadata(
name = HasAction.NAME,
name = HasAddAction.NAME,
description = "An action triggered when a {@link Service} is activated.",
version = TypeVersion.MINIMAL_VERSION_STRING
)

View File

@ -22,7 +22,7 @@ import org.gcube.resourcemanagement.model.reference.entities.facets.ContactFacet
*/
@JsonDeserialize(as=HasMaintainerImpl.class)
@TypeMetadata(
name = HasContact.NAME,
name = HasMaintainer.NAME,
description = "HasDeveloper indicates that the target {@link ContactFacet} contains the information related "
+ "to a developer of the source resource, e.g., the contact points of the developer of a software.",
version = TypeVersion.MINIMAL_VERSION_STRING

View File

@ -41,6 +41,6 @@ import org.gcube.resourcemanagement.model.reference.entities.resources.Software;
public interface Enables<Out extends Service, In extends Software>
extends IsRelatedTo<Out, In> {
public static final String NAME = "Runs"; // Runs.class.getSimpleName();
public static final String NAME = "Enables"; // Runs.class.getSimpleName();
}