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

com.structurizr.dsl.RemoteContent Maven / Gradle / Ivy

The newest version!
package com.structurizr.dsl;

final class RemoteContent {

    static final String CONTENT_TYPE_JSON = "application/json";
    static final String TEXT_PLAIN_JSON = "text/plain";

    private final String content;
    private final String contentType;

    RemoteContent(String content, String contentType) {
        this.content = content;
        this.contentType = contentType;
    }

    String getContent() {
        return content;
    }

    String getContentType() {
        return contentType;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy