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

io.polyapi.plugin.model.generation.PropertiesObject Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package io.polyapi.plugin.model.generation;

import lombok.Getter;

import java.util.List;
import java.util.Set;

@Getter
public class PropertiesObject implements Generable {

    private final String packageName;
    private final Set imports;
    private final String className;
    private final List> properties;

    public PropertiesObject(String packageName, Set imports, String className, List> properties) {
        this.packageName = packageName;
        this.imports = imports;
        this.className = className;
        this.properties = properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy