
com.launchdarkly.sdk.server.integrations.HookMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-java-server-sdk Show documentation
Show all versions of launchdarkly-java-server-sdk Show documentation
Official LaunchDarkly SDK for Java
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