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

com.structurizr.model.DeploymentElement Maven / Gradle / Ivy

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

/**
 * This is the superclass for model elements that describe deployment nodes and container instances.
 */
public abstract class DeploymentElement extends Element {

    static final String DEFAULT_DEPLOYMENT_ENVIRONMENT = "Default";

    private String environment = DEFAULT_DEPLOYMENT_ENVIRONMENT;

    DeploymentElement() {
    }

    public String getEnvironment() {
        return environment;
    }

    void setEnvironment(String environment) {
        this.environment = environment;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy