com.xliic.common.WorkspaceContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-bundler Show documentation
Show all versions of openapi-bundler Show documentation
Bundles multiple OpenAPI files (in JSON or YAML formats) using external references into one JSON file.
/*
Copyright (c) 42Crunch Ltd. All rights reserved.
Licensed under the GNU Affero General Public License version 3. See LICENSE.txt in the project root for license information.
*/
package com.xliic.common;
public class WorkspaceContent {
public final String data;
public final ContentType type;
public WorkspaceContent(String data, ContentType type) {
this.data = data;
this.type = type;
}
}