io.polyapi.plugin.model.function.CodeObject 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.function;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
public class CodeObject {
private String packageName;
private String className;
private String methodName;
private String params;
private String availableContexts;
private String code;
}