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

io.polyapi.plugin.model.specification.resolved.ResolvedCustomFunctionSpecification Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy