Class AbstractResourceFinderAdapter
- java.lang.Object
-
- org.glassfish.jersey.server.internal.AbstractResourceFinderAdapter
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,java.util.Iterator<java.lang.String>
,ResourceFinder
- Direct Known Subclasses:
BundleSchemeResourceFinderFactory.BundleSchemeScanner
,CompositeResourceFinder
,FileSchemeResourceFinderFactory.FileSchemeScanner
,FilesScanner
,JarFileScanner
,JarZipSchemeResourceFinderFactory.JarZipSchemeScanner
,PackageNamesScanner
,VfsSchemeResourceFinderFactory.VfsResourceFinder
,WebAppResourcesScanner
public abstract class AbstractResourceFinderAdapter extends java.lang.Object implements ResourceFinder
This class provides partial default implementation ofResourceFinder
.- Since:
- 2.18
-
-
Constructor Summary
Constructors Constructor Description AbstractResourceFinderAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Default implementation of#close()
which does nothing.void
remove()
Default implementation of#remove()
which complies with the defined contract.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.glassfish.jersey.server.ResourceFinder
open, reset
-
-
-
-
Method Detail
-
remove
public void remove()
Default implementation of#remove()
which complies with the defined contract.- Specified by:
remove
in interfacejava.util.Iterator<java.lang.String>
- Specified by:
remove
in interfaceResourceFinder
-
close
public void close()
Default implementation of#close()
which does nothing.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfaceResourceFinder
-
-