Class ResourceDigestGeneratorImpl
java.lang.Object
org.apache.tapestry5.internal.services.ResourceDigestGeneratorImpl
- All Implemented Interfaces:
ResourceDigestGenerator
Gutted implementation; will be removed in Tapestry 5.5.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongenerateDigest
(URL url) Reads the content of a URL (presumably, for a resource on the classpath) and generates a digest of its content.boolean
requiresDigest
(String path) Examines the path (typically, the file name extension at the end of the path) to determine if a checksum is required for the path.
-
Constructor Details
-
ResourceDigestGeneratorImpl
public ResourceDigestGeneratorImpl()
-
-
Method Details
-
generateDigest
Description copied from interface:ResourceDigestGenerator
Reads the content of a URL (presumably, for a resource on the classpath) and generates a digest of its content. This digest will be incorporated into the URL provided to the client, to verify that the client has been "granted" access to this resource. This is only used for resources whereResourceDigestGenerator.requiresDigest(String)
is true. As of Tapestry 5.4, simply returns null.- Specified by:
generateDigest
in interfaceResourceDigestGenerator
- Returns:
- the digest for the resource
-
requiresDigest
Description copied from interface:ResourceDigestGenerator
Examines the path (typically, the file name extension at the end of the path) to determine if a checksum is required for the path. The path isResource
style, without a leading slash. As of Tapestry 5.4, simply returns false.- Specified by:
requiresDigest
in interfaceResourceDigestGenerator
-