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

com.launchdarkly.sdk.server.integrations.HookMetadata Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
package com.launchdarkly.sdk.server.integrations;

/**
 * Metadata about the {@link Hook} implementation.
 */
public abstract class HookMetadata {

    private final String name;

    public HookMetadata(String name) {
        this.name = name;
    }

    /**
     * @return a friendly name for the {@link Hook} this {@link HookMetadata} belongs to.
     */
    public String getName() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy