com.github.davidmoten.oas3.internal.model.Puml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-to-plantuml Show documentation
Show all versions of openapi-to-plantuml Show documentation
Generates PlantUML file from an OpenAPI 3.0 Definition
The newest version!
package com.github.davidmoten.oas3.internal.model;
public final class Puml implements HasPuml {
private final String puml;
public Puml(String puml) {
this.puml = puml;
}
@Override
public String puml() {
return puml;
}
}