io.polyapi.plugin.model.specification.resolved.ResolvedCustomFunctionSpecification 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.specification.resolved;
import lombok.Getter;
@Getter
public class ResolvedCustomFunctionSpecification extends ResolvedDefaultFunctionSpecification {
private final String delegate;
public ResolvedCustomFunctionSpecification(ResolvedFunctionSpecification base, String delegate) {
super(base);
this.delegate = delegate;
}
}