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

org.openapitools.codegen.model.ModelMap Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
package org.openapitools.codegen.model;

import java.util.HashMap;
import java.util.Map;

import org.openapitools.codegen.CodegenModel;

public class ModelMap extends HashMap {

    public ModelMap() {

    }

    public ModelMap(Map init) {
        putAll(init);
    }

    public void setModel(CodegenModel model) {
        put("model", model);
    }

    public CodegenModel getModel() {
        return (CodegenModel) get("model");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy