W3cubDocs

/OpenJDK 25

Class GuardingDynamicLinkerExporter

java.lang.Object
jdk.dynalink.linker.GuardingDynamicLinkerExporter
All Implemented Interfaces:
Supplier<List<GuardingDynamicLinker>>
public abstract class GuardingDynamicLinkerExporter extends Object implements Supplier<List<GuardingDynamicLinker>>
A class acting as a supplier of guarding dynamic linkers that can be automatically loaded by other language runtimes. Language runtimes wishing to export their own linkers should subclass this class and implement the Supplier.get() method to return a list of exported linkers and declare the subclass in /META-INF/services/jdk.dynalink.linker.GuardingDynamicLinkerExporter resource of their distribution (typically, JAR file) so that dynamic linker factories can discover them using the ServiceLoader mechanism.
Since:
9
See Also:

Field Summary

Modifier and Type Field Description
static final String AUTOLOAD_PERMISSION_NAME
The name of the runtime permission for creating instances of this class.

Constructor Summary

Modifier Constructor Description
protected
Creates a new linker exporter.

Method Summary

Methods declared in interface Supplier

get

Field Details

AUTOLOAD_PERMISSION_NAME

public static final String AUTOLOAD_PERMISSION_NAME
The name of the runtime permission for creating instances of this class.
API Note:
This permission cannot be used for controlling access to resources anymore as the Security Manager is no longer supported.
See Also:

Constructor Details

GuardingDynamicLinkerExporter

protected GuardingDynamicLinkerExporter()
Creates a new linker exporter.

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/jdk.dynalink/jdk/dynalink/linker/GuardingDynamicLinkerExporter.html