package com.onaro.sanscreen.client.model.beans; import com.onaro.sanscreen.server.interfaces.data.TechnologyType; import java.util.Set; /** * Represents a link or line being drawn from the Host to a Cloud * and from the Cloud to a Storage. * * @author cohenj * @since 7/9/2009 * @version Everest * */ public interface IPCloudLinkBean extends LinkBean, NamedBean{ /** * Technology types that are using this cloud */ public static final String TECHNOLOGY_TYPES_PROPERTY_NAME = "technologyTypes"; //$NON-NLS-1$ public Set getTechnologyTypes(); public void setTechnologyTypes(Set technologyTypes); }