com.devonfw.cobigen.openapiplugin.model.ComponentDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapiplugin-model Show documentation
Show all versions of openapiplugin-model Show documentation
A Code-based incremental Generator
package com.devonfw.cobigen.openapiplugin.model;
import java.util.LinkedList;
import java.util.List;
/**
* Definition that store the configuration of a oasp4j component from OpenApi
*/
@SuppressWarnings("javadoc")
public class ComponentDef {
private List paths;
public ComponentDef() {
paths = new LinkedList<>();
}
public List getPaths() {
return paths;
}
public void setPaths(List paths) {
this.paths = paths;
}
}