templates.PropertiesObject.hbs 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 {{packageName}};
import lombok.Getter;
import io.polyapi.commons.api.model.PolyObject;
import io.polyapi.commons.api.model.PolyGeneratedClass;
{{~#each imports}}
import {{this}};
{{~/each}}
@Getter
@PolyGeneratedClass
public class {{className}} implements PolyObject {
{{~#each properties}}
private {{{this}}};
{{~/each}}
}