Module org.firebirdsql.jna
Interface ClasspathFirebirdEmbeddedResource
public interface ClasspathFirebirdEmbeddedResource
Defines how to locate the resources of a Firebird Embedded library on the classpath.
- Since:
- 5
- Author:
- Mark Rotteveel
-
Method Summary
Modifier and TypeMethodDescriptionEntry point of the library.Relative paths against the provider class of the resources with the Firebird Embedded files.
-
Method Details
-
getResourceList
Collection<String> getResourceList()Relative paths against the provider class of the resources with the Firebird Embedded files.The resources must not try to escape the current context using
..
. Implementations trying to do that will not be loaded.- Returns:
- Collection of resource paths of the Firebird Embedded instance
-
getLibraryEntryPoint
String getLibraryEntryPoint()Entry point of the library.- Returns:
- The relative path of the library entry point (e.g.
"fbclient.dll"
or"lib/libfbclient.so"
)
-