org.octopusden.octopus.components.registry.api.Component Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of components-registry-api Show documentation
Show all versions of components-registry-api Show documentation
Octopus module: components-registry-api
package org.octopusden.octopus.components.registry.api;
import org.octopusden.octopus.components.registry.api.enums.ProductTypes;
import java.util.Map;
public interface Component extends SubComponent {
/**
* Get product type associated with component.
* @return Returns product type
*/
ProductTypes getProductType();
String getDisplayName();
Map getSubComponents();
}