Uses of Class
com.oopsclick.silk.utils.SilkException
-
Packages that use SilkException Package Description com.oopsclick.silk.dbo com.oopsclick.silk.storage -
-
Uses of SilkException in com.oopsclick.silk.dbo
Methods in com.oopsclick.silk.dbo that throw SilkException Modifier and Type Method Description int
SqlOperation. authorization(java.lang.String name)
Executes Authorizationint
DataProvider. batch()
Executes the BATCH action.int
DataProvider. delete()
Executes the DELETE action.int
DataProvider. exec(java.lang.String operationName)
Executes the operation identify by the name providedResponseObject
FolderOperation. exec()
ResponseObject
SqlController. exec(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject)
exec operation.ResponseObject
FolderOperation. get()
Executes Select operationResponseObject
SqlController. get(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject, javax.servlet.http.HttpSession session)
The get method executes the SELECT operation in the database.ResponseObject
SqlOperation. get()
Executes Select operationint
DataProvider. insert()
Executes the INSERT action.int
DataProvider. select()
Executes the SELECT action using the "default" select's name.int
DataProvider. select(java.lang.String selectName)
Executes the SELECT action using the provided select's name.ResponseObject
FolderOperation. set(int index)
Executes INSERT, UPDATE and DELETE operation base on the requested action.ResponseObject
SqlController. set(ObjectStructure objectStructure, RequestObject requestObject, ResponseObject responseObject)
The set method executes INSERT, UPDATE or DELETEResponseObject
SqlOperation. set(int index)
Executes INSERT, UPDATE, DELETE, EXEC operation base on the requested action.void
RequestObject. setJSONString(java.lang.String jsonString)
Sets the requestObject from a JSON string.void
RequestObject. setJSONString(java.lang.String jsonString, javax.servlet.http.HttpSession session)
Sets the requestObject from a JSON string.int
SqlOperation. trigger(java.lang.String action, java.lang.String when)
Executes trigger operation base on the action and when provided.int
DataProvider. update()
Executes the UPDATE action.Constructors in com.oopsclick.silk.dbo that throw SilkException Constructor Description DataProvider(java.lang.String ormFileLocation)
Instantiates a new data provider using the ormFileLocationDataProvider(java.lang.String ormFileLocation, int debugLevel)
Instantiates a new data provider.DataProvider(java.lang.String ormFileLocation, int debugLevel, javax.servlet.http.HttpSession session)
Instantiates a new data provider.DataProvider(java.lang.String ormFileLocation, RequestObject requestObject)
Instantiates a new data provider.DataProvider(java.lang.String ormFileLocation, RequestObject requestObject, ResponseObject responseObject, int debugLevel, javax.servlet.http.HttpSession session)
Instantiates a new data provider.DataProvider(java.lang.String ormFileLocation, RequestObject requestObject, javax.servlet.http.HttpSession session)
Instantiates a new data provider.DataProvider(java.lang.String ormFileLocation, javax.servlet.http.HttpSession session)
Instantiates a new data provider. -
Uses of SilkException in com.oopsclick.silk.storage
Methods in com.oopsclick.silk.storage that throw SilkException Modifier and Type Method Description java.lang.Class<?>
ObjectStructure. getColumnType(java.lang.String name)
Gets the column type.java.lang.String
ObjectStructure. getLevelTreeColumn()
Gets the level tree column.java.lang.String
ObjectStructure. getOrderColumn()
Gets the order column.java.lang.String
ObjectStructure. getParentTreeColumn()
Gets the parent tree column.java.lang.String
ObjectStructure. getPkColumn()
Gets the Primary Key column.SqlCommand
ObjectStructure. getPkSql()
Gets the PK SQL.java.lang.String
ObjectStructure. getRootTreeColumn()
Gets the root tree column.java.lang.String
ObjectStructure. getTableName()
Gets the table name.java.lang.Class<?>
ColumnProperty. getType()
Gets the type.ObjectStructure
ObjectLoader. loadObject(java.lang.String ormFileLocation)
Loads the .orm file based on its ormFileLocation.void
ColumnProperty. setAuthorization(java.lang.String authorization)
Sets the insertAuthorization and updateAuthorizationvoid
ObjectStructure. setAuthorization(java.lang.String authorization)
Sets the authorizationvoid
SqlCommand. setAuthorization(java.lang.String authorization)
Sets the authorizationvoid
ObjectStructure. setDeleteAuthorization(java.lang.String authorization)
Sets the deleteAuthorizationvoid
ColumnProperty. setInsertAuthorization(java.lang.String authorization)
Sets the insertAuthorizationvoid
ObjectStructure. setInsertAuthorization(java.lang.String authorization)
Sets the insertAuthorizationvoid
ObjectStructure. setPkSql(SqlCommand pkSql)
Sets the PK SQL.void
SqlCommand. setSqlStatement(java.lang.String sqlStatement)
Receives the SQL Command and parses it for parameters.void
ColumnProperty. setTranslation(java.lang.String translation)
Sets the translate.void
SqlCommand. setTriggerAction(java.lang.String triggerAction)
Sets the trigger action value.void
SqlCommand. setTriggerWhen(java.lang.String triggerWhen)
Sets the trigger when event.void
ColumnProperty. setType(java.lang.Class<?> type)
Sets the type using a Class typevoid
ColumnProperty. setType(java.lang.String type)
Sets the type using a String descriptor S : String.class N : Double.class I : Integer.class D : LocalDateTime.class T : LocalTime.class P : Password.classvoid
ColumnProperty. setUpdateAuthorization(java.lang.String authorization)
Sets the updateAuthorizationvoid
ObjectStructure. setUpdateAuthorization(java.lang.String authorization)
Sets the updateAuthorization
-