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

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

There is a newer version: 0.15.3
Show newest version
package io.polyapi.plugin.model.specification.resolved;

import lombok.Getter;

import java.util.Set;

@Getter
public class ResolvedWebhookHandleSpecification extends ResolvedSpecification {
    private final String eventType;

    public ResolvedWebhookHandleSpecification(ResolvedSpecification base, String eventType) {
        super(base);
        this.eventType = eventType;
    }

    public ResolvedWebhookHandleSpecification(String id, String name, String packageName, Set imports, String className, String eventType) {
        super(id, name, packageName, imports, className);
        this.eventType = eventType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy