io.polyapi.plugin.model.generation.PropertiesObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyapi-maven-plugin Show documentation
Show all versions of polyapi-maven-plugin Show documentation
Maven plugin to run handle Poly API functions.
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;
}
}