Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Exception indicating something is wrong with the provided arguments or reading the configuration
* from them
*/
public class InvalidArgumentException extends Exception {
public final class InvalidArgumentException extends Exception {

private static final long serialVersionUID = 0L;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import javax.security.auth.callback.UnsupportedCallbackException;
import javax.security.sasl.RealmCallback;

public class JmxConnectorBuilder {
public final class JmxConnectorBuilder {

private static final Logger logger = Logger.getLogger(JmxConnectorBuilder.class.getName());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import javax.management.MBeanServerConnection;
import javax.management.remote.JMXConnector;

public class JmxScraper {
public final class JmxScraper {
private static final Logger logger = Logger.getLogger(JmxScraper.class.getName());
private static final String CONFIG_ARG = "-config";
private static final String TEST_ARG = "-test";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import javax.annotation.Nullable;

/** This class keeps application settings */
public class JmxScraperConfig {
public final class JmxScraperConfig {

private static final Logger logger = Logger.getLogger(JmxScraperConfig.class.getName());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import javax.annotation.Nullable;

/** Customizer of default SDK configuration and provider of effective scraper config */
public class PropertiesCustomizer implements Function<ConfigProperties, Map<String, String>> {
public final class PropertiesCustomizer implements Function<ConfigProperties, Map<String, String>> {

private static final Logger logger = Logger.getLogger(PropertiesCustomizer.class.getName());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.function.Supplier;

/** Configuration supplier for java properties */
public class PropertiesSupplier implements Supplier<Map<String, String>> {
public final class PropertiesSupplier implements Supplier<Map<String, String>> {

private final Properties properties;

Expand Down
Loading