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

io.virtdata.api.config.ConfigModel Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
package io.virtdata.api.config;

import java.util.List;

public interface ConfigModel {
    List getElements();

    public static class Element {
        public final String name;
        public final Class type;

        public Element(String name, Class type) {
            this.name = name;
            this.type =type;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy