Package com.oopsclick.silk.dbo
Class FolderOperation
- java.lang.Object
-
- com.oopsclick.silk.dbo.FolderOperation
-
public class FolderOperation extends java.lang.Object
The FileCommand object stores information related to an SQL command defined on the ORM file.This object provides the methods to execute the SQL commands against file system.
- Author:
- Italo Osorio
-
-
Constructor Summary
Constructors Constructor Description FolderOperation(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject)
FileOperation Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResponseObject
exec()
ResponseObject
get()
Executes Select operationResponseObject
set(int index)
Executes INSERT, UPDATE and DELETE operation base on the requested action.
-
-
-
Constructor Detail
-
FolderOperation
public FolderOperation(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject)
FileOperation Constructor- Parameters:
objectStructure
- the ObjectStructurerequestObject
- the RequestObjectresponseObject
- the responseObject
-
-
Method Detail
-
get
public ResponseObject get() throws java.lang.Exception, SilkException
Executes Select operation- Returns:
- responseObject the objected returned
- Throws:
SilkException
- the silk exceptionjava.lang.Exception
-
set
public ResponseObject set(int index) throws java.lang.Exception, SilkException
Executes INSERT, UPDATE and DELETE operation base on the requested action.- Parameters:
index
- the position of the form item to set- Returns:
- responseObject the objected returned
- Throws:
SilkException
- the silk exceptionjava.lang.Exception
-
exec
public ResponseObject exec() throws java.lang.Exception, SilkException
- Throws:
java.lang.Exception
SilkException
-
-