Package org.apache.sling.scripting.core
Class ScriptNameAwareReader
- java.lang.Object
-
- java.io.Reader
-
- java.io.FilterReader
-
- org.apache.sling.scripting.core.ScriptNameAwareReader
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Readable,ScriptNameAware
public final class ScriptNameAwareReader extends FilterReader implements ScriptNameAware
TheScriptNameAwareReaderis aFilterReadermarked with theScriptNameAwareinterface. This reader allows retrieving the contained script's name.
-
-
Constructor Summary
Constructors Constructor Description ScriptNameAwareReader(Reader in, String scriptName)Creates aScriptNameAwareReaderbased on anotherReader.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetScriptName()Returns the name of the script provided by a markedReaderimplementation.-
Methods inherited from class java.io.FilterReader
close, mark, markSupported, read, read, ready, reset, skip
-
Methods inherited from class java.io.Reader
nullReader, read, read, transferTo
-
-
-
-
Method Detail
-
getScriptName
public String getScriptName()
Description copied from interface:ScriptNameAwareReturns the name of the script provided by a markedReaderimplementation.- Specified by:
getScriptNamein interfaceScriptNameAware- Returns:
- the script's name
-
-