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

su.nlq.prometheus.jmx.connection.local.LocalConnectionConfiguration Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
package su.nlq.prometheus.jmx.connection.local;

import org.jetbrains.annotations.NotNull;
import su.nlq.prometheus.jmx.connection.Connection;
import su.nlq.prometheus.jmx.connection.ConnectionConfiguration;

import javax.xml.bind.annotation.XmlType;

@XmlType(name = "local-connection")
public final class LocalConnectionConfiguration extends ConnectionConfiguration {

  @Override
  public @NotNull Connection get() {
    return new LocalConnection(name());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy