Class SqlController

  • All Implemented Interfaces:
    org.springframework.beans.factory.InitializingBean

    public class SqlController
    extends org.springframework.jdbc.core.support.JdbcDaoSupport
    The SqlController class is used as a JAVA bean. Its functionality is to act as the ORM Controller. It connects to the database and receives objects from the DataProvider to execute SQL Commands.
    • Constructor Detail

      • SqlController

        public SqlController()
    • Method Detail

      • setTranslatorIn

        public void setTranslatorIn​(java.lang.String translatorIn)
        Set the function use to store translation. Load from applicationContext.xml.
        Parameters:
        translatorIn - the new translator in
      • setTranslatorOut

        public void setTranslatorOut​(java.lang.String translatorOut)
        Set the function to get translation Load from applicationContext.xml
        Parameters:
        translatorOut - the new translator out
      • get

        public ResponseObject get​(ObjectStructure objectStructure,
                                  RequestObject requestObject,
                                  ResponseObject responseObject,
                                  javax.servlet.http.HttpSession session)
                           throws java.lang.Exception,
                                  org.springframework.dao.DataAccessException,
                                  SilkException
        The get method executes the SELECT operation in the database.
        Parameters:
        objectStructure - the object structure
        requestObject - the request object
        responseObject - the return object
        session - the session being used
        Returns:
        the return object
        Throws:
        org.springframework.dao.DataAccessException - the data access exception
        SilkException - the silk exception
        java.lang.Exception
      • set

        public ResponseObject set​(ObjectStructure objectStructure,
                                  RequestObject requestObject,
                                  ResponseObject responseObject)
                           throws java.lang.Exception,
                                  org.springframework.dao.DataAccessException,
                                  SilkException
        The set method executes INSERT, UPDATE or DELETE
        Parameters:
        objectStructure - the object structure
        requestObject - the request object
        responseObject - the return object
        Returns:
        the return object
        Throws:
        org.springframework.dao.DataAccessException - the data access exception
        SilkException - the silk exception
        java.lang.Exception
      • exec

        public ResponseObject exec​(ObjectStructure objectStructure,
                                   RequestObject requestObject,
                                   ResponseObject responseObject)
                            throws java.lang.Exception,
                                   org.springframework.dao.DataAccessException,
                                   SilkException
        exec operation.
        Parameters:
        objectStructure - the object structure
        requestObject - the request object
        responseObject - the return object
        Returns:
        the return object
        Throws:
        org.springframework.dao.DataAccessException - the data access exception
        SilkException - the silk exception
        java.lang.Exception