Package com.oopsclick.silk.storage
Class ObjectLoader
- java.lang.Object
-
- com.oopsclick.silk.storage.ObjectLoader
-
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.web.context.ServletContextAware
public class ObjectLoader extends java.lang.Object implements org.springframework.web.context.ServletContextAware
The Class ObjectMappingStructure is a JAVA bean loaded in the application context. Its objective is to read .orm files, parse them into ObjectStructure objects, and load them to the ObjectStorage.Before processing an .orm file the loader check the file last modification date and compares it with the date stored in the ObjectStorage. If the .orm file has not been modify the loader does not process the file and returns the object from the ObjectStorage. If the .orm file has been modify it is processed and returned.
- Author:
- Italo Osorio
-
-
Constructor Summary
Constructors Constructor Description ObjectLoader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectStructure
loadObject(java.lang.String ormFileLocation)
Loads the .orm file based on its ormFileLocation.void
setServletContext(javax.servlet.ServletContext ctx)
Set servlet context to extract the application path;
-
-
-
Method Detail
-
setServletContext
public void setServletContext(javax.servlet.ServletContext ctx)
Set servlet context to extract the application path;- Specified by:
setServletContext
in interfaceorg.springframework.web.context.ServletContextAware
- See Also:
ServletContextAware.setServletContext(javax.servlet.ServletContext)
-
loadObject
public ObjectStructure loadObject(java.lang.String ormFileLocation) throws SilkException, javax.xml.parsers.ParserConfigurationException, org.xml.sax.SAXException, java.io.IOException
Loads the .orm file based on its ormFileLocation.- Parameters:
ormFileLocation
- the ORM file location- Returns:
- the object
- Throws:
SilkException
- the silk exceptionjavax.xml.parsers.ParserConfigurationException
- the parser configuration exceptionorg.xml.sax.SAXException
- the SAX exceptionjava.io.IOException
- Signals that an I/O exception has occurred.
-
-