Package com.oopsclick.silk.dbo
Class SqlController
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.jdbc.core.support.JdbcDaoSupport
-
- com.oopsclick.silk.dbo.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 Summary
Constructors Constructor Description SqlController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResponseObject
exec(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject)
exec operation.ResponseObject
get(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject, javax.servlet.http.HttpSession session)
The get method executes the SELECT operation in the database.ResponseObject
set(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject)
The set method executes INSERT, UPDATE or DELETEvoid
setTranslatorIn(java.lang.String translatorIn)
Set the function use to store translation.void
setTranslatorOut(java.lang.String translatorOut)
Set the function to get translation Load from applicationContext.xml
-
-
-
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 structurerequestObject
- the request objectresponseObject
- the return objectsession
- the session being used- Returns:
- the return object
- Throws:
org.springframework.dao.DataAccessException
- the data access exceptionSilkException
- the silk exceptionjava.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 structurerequestObject
- the request objectresponseObject
- the return object- Returns:
- the return object
- Throws:
org.springframework.dao.DataAccessException
- the data access exceptionSilkException
- the silk exceptionjava.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 structurerequestObject
- the request objectresponseObject
- the return object- Returns:
- the return object
- Throws:
org.springframework.dao.DataAccessException
- the data access exceptionSilkException
- the silk exceptionjava.lang.Exception
-
-