Class FileReloaderUtils
java.lang.Object
org.ametys.runtime.plugin.component.AbstractLogEnabled
org.ametys.core.util.filereloader.FileReloaderUtils
- All Implemented Interfaces:
LogEnabled
,Initializable
,Component
,Serviceable
public class FileReloaderUtils
extends AbstractLogEnabled
implements Component, Serviceable, Initializable
a helper to track modification of a configuration file
-
Field Summary
Modifier and TypeFieldDescriptionprotected SourceResolver
The source resolverstatic final String
The avalon role -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
service
(ServiceManager manager) void
updateFile
(String sourceUrl, boolean forceRead, FileReloader fileReloader) Request to read/update the filevoid
updateFile
(String sourceUrl, Map parameters, boolean forceRead, FileReloader fileReloader) Request to read/update the filevoid
updateFile
(String sourceUrl, Map parameters, FileReloader fileReloader) Request to read/update the filevoid
updateFile
(String sourceUrl, FileReloader fileReloader) Request to read/update the fileMethods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
Field Details
-
ROLE
The avalon role -
_resolver
The source resolver
-
-
Constructor Details
-
FileReloaderUtils
public FileReloaderUtils()
-
-
Method Details
-
service
- Specified by:
service
in interfaceServiceable
- Throws:
ServiceException
-
initialize
- Specified by:
initialize
in interfaceInitializable
- Throws:
Exception
-
updateFile
Request to read/update the file- Parameters:
sourceUrl
- url of the file to readfileReloader
- FileReloader that will be called to get an ID and read the file- Throws:
Exception
- the source can not be read
-
updateFile
public void updateFile(String sourceUrl, boolean forceRead, FileReloader fileReloader) throws Exception Request to read/update the file- Parameters:
sourceUrl
- url of the file to readforceRead
- true to force reload even if the file was not modifiedfileReloader
- FileReloader that will be called to get an ID and read the file- Throws:
Exception
- the source can not be read
-
updateFile
public void updateFile(String sourceUrl, Map parameters, FileReloader fileReloader) throws Exception Request to read/update the file- Parameters:
sourceUrl
- url of the file to readparameters
- parameters passed to the resolver to get the file via it's url (can be null)fileReloader
- FileReloader that will be called to get an ID and read the file- Throws:
Exception
- the source can not be read
-
updateFile
public void updateFile(String sourceUrl, Map parameters, boolean forceRead, FileReloader fileReloader) throws Exception Request to read/update the file- Parameters:
sourceUrl
- url of the file to readparameters
- parameters passed to the resolver to get the file via it's url (can be null)forceRead
- true to force reload even if the file was not modifiedfileReloader
- FileReloader that will be called to get an ID and read the file- Throws:
Exception
- the source can not be read
-