Package org.faceless.publisher.resource
Class FileURLConnectionFactory
java.lang.Object
org.faceless.publisher.resource.FileURLConnectionFactory
- All Implemented Interfaces:
URLConnectionFactory
A URLConnectionFactory that handles the "jar" and "file"
URLs, ie. those handled by Java by default.
All URLs loaded by this Factory are trusted.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionlong
getExpiry
(URL2 uri, URL2Connection con) Return the absolute expiry time of the resource reeturned by the specified URLConnection, or Long.MAX_VALUE for forever.getURLConnection
(URL2 uri, ReportFactory reportFactory) Return a URLConnection for the specified URI, or null if not possible with this factory.boolean
Return true if the supplied URL (which will be loadable by this Factory) should be considered trusted.boolean
isUnchanged
(URL2 uri, URL2Connection con) Return true if a previous resource loaded by this factory should be considered valid, based on the supplied response for a subsequent request for the same resource.boolean
Return true if this factory can load the specified URI schema (eg http, ftp, jar, jdbc)toString()
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.faceless.publisher.resource.URLConnectionFactory
close, getURLConnectionProcessors, setURLConnectionProcessors
-
Constructor Details
-
FileURLConnectionFactory
public FileURLConnectionFactory()
-
-
Method Details
-
getURLConnection
Description copied from interface:URLConnectionFactory
Return a URLConnection for the specified URI, or null if not possible with this factory.- Specified by:
getURLConnection
in interfaceURLConnectionFactory
- Parameters:
uri
- the URIreportFactory
- the ReportFactory that owns this connection- Throws:
IOException
-
toString
-
supports
Description copied from interface:URLConnectionFactory
Return true if this factory can load the specified URI schema (eg http, ftp, jar, jdbc)- Specified by:
supports
in interfaceURLConnectionFactory
- Parameters:
uri
- the URI
-
isUnchanged
Description copied from interface:URLConnectionFactory
Return true if a previous resource loaded by this factory should be considered valid, based on the supplied response for a subsequent request for the same resource. As an example this method should return true if a web server returned a 304 (Not Modified). There is a default implementation which returns true.- Specified by:
isUnchanged
in interfaceURLConnectionFactory
- Parameters:
uri
- the URIcon
- the URL connection- Throws:
IOException
-
getExpiry
Description copied from interface:URLConnectionFactory
Return the absolute expiry time of the resource reeturned by the specified URLConnection, or Long.MAX_VALUE for forever. If this is not specified by the headers, the factory may still return a non-zero value to prevent content being cached forever. There is a default implementation which returns Long.MAX_VALUE;- Specified by:
getExpiry
in interfaceURLConnectionFactory
- Parameters:
uri
- the URIcon
- the URL connection
-
isTrusted
Description copied from interface:URLConnectionFactory
Return true if the supplied URL (which will be loadable by this Factory) should be considered trusted. The default implementation returns false.- Specified by:
isTrusted
in interfaceURLConnectionFactory
- See Also:
-