All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.octopusden.octopus.components.registry.api.Component Maven / Gradle / Ivy

There is a newer version: 2.0.30
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy