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

55 lines
2.7 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;
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.HostsImpl;
2020-12-22 15:31:40 +01:00
import org.gcube.resourcemanagement.model.reference.entities.resources.EService;
import org.gcube.resourcemanagement.model.reference.entities.resources.HostingNode;
import org.gcube.resourcemanagement.model.reference.entities.resources.Service;
import org.gcube.resourcemanagement.model.reference.entities.resources.Site;
2020-12-22 15:31:40 +01:00
import org.gcube.resourcemanagement.model.reference.entities.resources.VirtualMachine;
/**
2020-12-22 15:31:40 +01:00
* Hosts relation is used from a {@link Site} a {@link Service} instance.
* The target of the Hosts relation depends on the service offered by the Site.
* When the resources provided by a site are virtual machines,
* Hosts relation is created from a {@link Site} to a {@link VirtualMachine}.
2020-12-22 15:09:55 +01:00
*
2020-12-22 15:31:40 +01:00
* When, instead a Site provides web-services, Hosts relation is created with {@link EService}.
*
* If a site provides container facilities Hosts relation is created with {@link HostingNode}.
*
* By defining Hosts relation with target {@link Service}, the model is capable of representing
* the diverse type of federated systems and service.
2020-12-22 15:09:55 +01:00
*
* https://wiki.gcube-system.org/gcube/GCube_Model#Hosts
2020-12-21 14:56:46 +01:00
*
* @author Luca Frosini (ISTI - CNR)
*/
@JsonDeserialize(as=HostsImpl.class)
@TypeMetadata(
2020-12-22 15:09:55 +01:00
name = Hosts.NAME,
2021-09-13 12:57:00 +02:00
description = "Hosts relation is used from a {@link Site} a {@link Service} instance. "
+ "The target of the Hosts relation depends on the service offered by the Site. "
2020-12-22 16:20:14 +01:00
+ "When the resources provided by a site are virtual machines, "
2021-09-13 12:57:00 +02:00
+ "Hosts relation is created from a {@link Site} to a {@link VirtualMachine}. "
+ "When, instead a Site provides web-services, Hosts relation is created with {@link EService}. "
+ "If a site provides container facilities Hosts relation is created with {@link HostingNode}. "
2020-12-22 16:20:14 +01:00
+ "By defining Hosts relation with target {@link Service}, the model is capable of representing "
+ "the diverse type of federated systems and service.",
version = TypeVersion.MINIMAL_VERSION_STRING
)
@Change(version = TypeVersion.MINIMAL_VERSION_STRING, description = TypeVersion.MINIMAL_VERSION_DESCRIPTION)
public interface Hosts<Out extends Site, In extends Service>
extends IsRelatedTo<Out, In> {
public static final String NAME = "Hosts"; // Hosts.class.getSimpleName();
}