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

38 lines
1.6 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.model.reference.relations.IsRelatedTo;
2020-12-21 14:56:46 +01:00
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.CallsForImpl;
import org.gcube.resourcemanagement.model.reference.entities.resources.Service;
/**
2020-12-22 15:09:55 +01:00
* A {@link Service} instance can require another {@link Service} instance to properly
* operate and this is indicated with CallsFor.
* Motivations similar to the ones for {@link Requires} relation conducted to the definition for this relation.
*
* https://wiki.gcube-system.org/gcube/GCube_Model#CallsFor
2020-12-21 14:56:46 +01:00
*
* @author Luca Frosini (ISTI - CNR)
*/
@JsonDeserialize(as=CallsForImpl.class)
@TypeMetadata(
2020-12-21 14:56:46 +01:00
name = CallsFor.NAME,
2020-12-22 15:09:55 +01:00
description = "A {@link Service} instance can require another {@link Service} instance to properly "
2021-09-13 12:57:00 +02:00
+ "operate and this is indicated with CallsFor. "
2020-12-22 15:09:55 +01:00
+ "Motivations similar to the ones for {@link Requires} relation conducted to the definition for this relation.",
version = TypeVersion.MINIMAL_VERSION_STRING
)
@Change(version = TypeVersion.MINIMAL_VERSION_STRING, description = TypeVersion.MINIMAL_VERSION_DESCRIPTION)
public interface CallsFor<Out extends Service, In extends Service>
extends IsRelatedTo<Out, In> {
public static final String NAME = "CallsFor"; //CallsFor.class.getSimpleName();
}