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

com.newrelic.agent.modules.ClassLoaderUtil Maven / Gradle / Ivy

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