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

com.structurizr.inspection.model.ComponentTechnologyInspection Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.structurizr.inspection.model;

import com.structurizr.inspection.Inspector;
import com.structurizr.inspection.Violation;
import com.structurizr.model.Component;
import com.structurizr.util.StringUtils;

public class ComponentTechnologyInspection extends AbstractComponentInspection {

    public ComponentTechnologyInspection(Inspector inspector) {
        super(inspector);
    }

    @Override
    protected Violation inspect(Component component) {
        if (StringUtils.isNullOrEmpty(component.getDescription())) {
            return violation("The " + terminologyFor(component).toLowerCase() + " \"" + nameOf(component) + "\" is missing a technology.");
        }

        return noViolation();
    }

    @Override
    protected String getType() {
        return "model.component.technology";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy