gcube-model/src/main/java/org/gcube/resourcemanagement/model/reference/relations/isrelatedto/Uses.java

38 lines
1.3 KiB
Java
Raw Normal View History

/**
*
*/
package org.gcube.resourcemanagement.model.reference.relations.isrelatedto;
2020-07-07 17:12:10 +02:00
import org.gcube.com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.gcube.informationsystem.types.reference.Change;
import org.gcube.informationsystem.types.reference.TypeMetadata;
import org.gcube.informationsystem.utils.TypeVersion;
import org.gcube.resourcemanagement.model.impl.relations.isrelatedto.UsesImpl;
import org.gcube.resourcemanagement.model.reference.entities.resources.EService;
/**
2020-12-22 15:31:40 +01:00
* Uses relation inform regarding the network invocation of the target
* {@link EService} by the source.
2020-12-22 15:09:55 +01:00
*
2020-12-22 15:31:40 +01:00
* Uses relation specialises the semantic of {@link CallsFor}.
* https://wiki.gcube-system.org/gcube/GCube_Model#Uses
2020-12-21 14:56:46 +01:00
*
* @author Luca Frosini (ISTI - CNR)
*/
@JsonDeserialize(as=UsesImpl.class)
@TypeMetadata(
2020-12-22 15:09:55 +01:00
name = Uses.NAME,
2020-12-22 16:20:14 +01:00
description = "Uses relation inform regarding the network invocation of the target"
2021-09-13 12:57:00 +02:00
+ "{@link EService} by the source. "
2020-12-22 16:20:14 +01:00
+ "Uses relation specialises the semantic of {@link CallsFor}.",
version = TypeVersion.MINIMAL_VERSION_STRING
)
@Change(version = TypeVersion.MINIMAL_VERSION_STRING, description = TypeVersion.MINIMAL_VERSION_DESCRIPTION)
public interface Uses<Out extends EService, In extends EService>
extends CallsFor<Out, In> {
public static final String NAME = "Uses"; // Uses.class.getSimpleName();
}