org.infinispan.server.insights.InsightsModuleImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-insights Show documentation
Show all versions of infinispan-server-insights Show documentation
Infinispan Server - Red Hat Insights integration module
The newest version!
package org.infinispan.server.insights;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import javax.annotation.processing.Generated;
import org.infinispan.factories.impl.ModuleMetadataBuilder;
import org.infinispan.lifecycle.ModuleLifecycle;
import org.infinispan.manager.ModuleRepository;
/**
* @api.private
*/
@Generated(value = "org.infinispan.component.processor.Generator", date = "2024-12-23T17:28:57.536059859Z")
public final class InsightsModuleImpl implements ModuleMetadataBuilder {
//module org.infinispan.server.insights.InsightsModule
public String getModuleName() {
return "insights";
}
public Collection getRequiredDependencies() {
return Arrays.asList("core", "server-runtime");
}
public Collection getOptionalDependencies() {
return Collections.emptyList();
}
public ModuleLifecycle newModuleLifecycle() {
return new org.infinispan.server.insights.InsightsModule();
}
public void registerMetadata(ModuleBuilder builder) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy