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

com.structurizr.inspection.model.EmptyDeploymentNodeInspection 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.DeploymentNode;

public class EmptyDeploymentNodeInspection extends AbstractDeploymentNodeInspection {

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

    @Override
    protected Violation inspect(DeploymentNode deploymentNode) {
        if (!deploymentNode.hasChildren() && !deploymentNode.hasSoftwareSystemInstances() && !deploymentNode.hasContainerInstances() && !deploymentNode.hasInfrastructureNodes()) {
            return violation("The " + terminologyFor(deploymentNode).toLowerCase() + " \"" + nameOf(deploymentNode) + "\" is empty.");
        }

        return noViolation();
    }

    @Override
    protected String getType() {
        return "model.deploymentnode.empty";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy