Class 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;
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ObjectLoader

        public ObjectLoader()
    • Method Detail

      • setServletContext

        public void setServletContext​(javax.servlet.ServletContext ctx)
        Set servlet context to extract the application path;
        Specified by:
        setServletContext in interface org.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 exception
        javax.xml.parsers.ParserConfigurationException - the parser configuration exception
        org.xml.sax.SAXException - the SAX exception
        java.io.IOException - Signals that an I/O exception has occurred.