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

com.structurizr.inspection.view.GeneratedKeyInspection Maven / Gradle / Ivy

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

import com.structurizr.inspection.Inspector;
import com.structurizr.inspection.Violation;
import com.structurizr.view.ModelView;
import com.structurizr.view.View;

public class GeneratedKeyInspection extends AbstractViewInspection {

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

    @Override
    protected Violation inspect(View view) {
        if (view.isGeneratedKey()) {
            return violation("The view with key \"" + view.getKey() + "\" has an automatically generated view key and this is not guaranteed to be stable over time.");
        }

        return noViolation();
    }

    @Override
    protected String getType() {
        return "views.view.key";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy