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

com.structurizr.PropertyHolder Maven / Gradle / Ivy

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

import java.util.Map;

public interface PropertyHolder {

    /**
     * Gets the collection of name-value property pairs associated with this workspace, as a Map.
     *
     * @return  a Map (String, String) (empty if there are no properties)
     */
    public Map getProperties();

    /**
     * Adds a name-value pair property to this workspace.
     *
     * @param name      the name of the property
     * @param value     the value of the property
     */
    public void addProperty(String name, String value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy