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
Fields Modifier and Type Field Description protected SourceResolver
_resolver
The source resolverstatic String
ROLE
The avalon role
-
Constructor Summary
Constructors Constructor Description FileReloaderUtils()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
initialize()
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 file-
Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
-
-
-
Field Detail
-
_resolver
protected SourceResolver _resolver
The source resolver
-
-
Constructor Detail
-
FileReloaderUtils
public FileReloaderUtils()
-
-
Method Detail
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Throws:
ServiceException
-
initialize
public void initialize() throws Exception
- Specified by:
initialize
in interfaceInitializable
- Throws:
Exception
-
updateFile
public void updateFile(String sourceUrl, FileReloader fileReloader) throws Exception
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
-
-