Class DebugResourceLoader
- java.lang.Object
-
- org.apache.velocity.runtime.resource.loader.ResourceLoader
-
- com.atlassian.confluence.setup.velocity.DebugResourceLoader
-
public class DebugResourceLoader extends org.apache.velocity.runtime.resource.loader.ResourceLoader
-
-
Constructor Summary
Constructors Constructor Description DebugResourceLoader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getLastModified(org.apache.velocity.runtime.resource.Resource resource)
Never called because #getResourceStream(java.lang.String) always returns null.InputStream
getResourceStream(String source)
Always returns null, indicating this ResourceLoader does not load any content.void
init(org.apache.commons.collections.ExtendedProperties configuration)
boolean
isSourceModified(org.apache.velocity.runtime.resource.Resource resource)
Never called because #getResourceStream(java.lang.String) always returns null.
-
-
-
Method Detail
-
init
public void init(org.apache.commons.collections.ExtendedProperties configuration)
- Specified by:
init
in classorg.apache.velocity.runtime.resource.loader.ResourceLoader
-
getResourceStream
public InputStream getResourceStream(String source) throws org.apache.velocity.exception.ResourceNotFoundException
Always returns null, indicating this ResourceLoader does not load any content.- Specified by:
getResourceStream
in classorg.apache.velocity.runtime.resource.loader.ResourceLoader
- Throws:
org.apache.velocity.exception.ResourceNotFoundException
-
isSourceModified
public boolean isSourceModified(org.apache.velocity.runtime.resource.Resource resource)
Never called because #getResourceStream(java.lang.String) always returns null.- Specified by:
isSourceModified
in classorg.apache.velocity.runtime.resource.loader.ResourceLoader
-
getLastModified
public long getLastModified(org.apache.velocity.runtime.resource.Resource resource)
Never called because #getResourceStream(java.lang.String) always returns null.- Specified by:
getLastModified
in classorg.apache.velocity.runtime.resource.loader.ResourceLoader
-
-