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

com.structurizr.component.url.DefaultUrlStrategy Maven / Gradle / Ivy

package com.structurizr.component.url;

import com.structurizr.component.Type;

/**
 * Generates a null URL.
 */
public class DefaultUrlStrategy implements UrlStrategy {

    @Override
    public String urlOf(Type type) {
        return null;
    }

    @Override
    public String toString() {
        return "DefaultUrlStrategy{}";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy