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

io.quarkus.resteasy.reactive.server.deployment.devconsole.DevQuteInfos Maven / Gradle / Ivy

package io.quarkus.resteasy.reactive.server.deployment.devconsole;

import java.util.ArrayList;
import java.util.List;

public class DevQuteInfos {
    private List templateInfos = new ArrayList<>();

    public DevQuteInfos() {
    }

    public List getTemplateInfos() {
        return templateInfos;
    }

    public void setTemplateInfos(List templateInfos) {
        this.templateInfos = templateInfos;
    }

    public void addQuteTemplateInfo(DevQuteTemplateInfo info) {
        templateInfos.add(info);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy