
com.newrelic.agent.modules.ClassLoaderUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-module-util-java Show documentation
Show all versions of newrelic-module-util-java Show documentation
Multi-release jar for bootstrapping the Java Agent
The newest version!
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package com.newrelic.agent.modules;
/**
* This interface exists to ensure compatibility between the Java {@literal <} 9
* and Java {@literal >=} 9 versions of utilities that operate on classloaders.
*
* The Java {@literal <} 9 implementation is found in this same package.
* The Java {@literal >=} 9 implementation is found in the java9 source set.
*
* This package is built using Java's Multi-Release Jar
* functionality introduced in Java 9.
*/
public interface ClassLoaderUtil {
ClassLoader getPlatformClassLoaderOrNull();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy