public CamelComponent()

in src/main/java/org/apache/camel/kameleon/model/CamelComponent.java [30:36]


    public CamelComponent(String name, String title, String description, String supportLevel, List<String> labels, String firstVersion, String artifactId, Boolean deprecated, Boolean nativeSupported) {
        super(name, title, description, supportLevel, labels);
        this.firstVersion = firstVersion;
        this.artifactId = artifactId;
        this.deprecated = deprecated;
        this.nativeSupported = nativeSupported;
    }