Package com.openkm.sdk4j.definition
Interface BaseWizard
-
- All Known Implementing Classes:
WizardImpl
public interface BaseWizardBaseWizard- Author:
- sochoa
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddDigitalSignature(String uuid, int order)Add digital signature.voidaddGroup(String uuid, String group, int order)Add group.voidaddShowWizardCategories(String uuid, int order)Add show wizard categories.voidaddShowWizardKeywords(String uuid, int order)Add show wizard keywords.voidaddShowWizardOCRDataCapture(String uuid, int order)Add show wizard ocr data capture.voidaddWorkflow(String uuid, String workflow, int order)Add workflow.voiddeleteAll()Delete all.List<WizardNode>findByUser()Find by user list.WizardNodefindByUserAndUuid(String uuid)Find by user and uuid wizard node.booleanhasWizardByUserAndNode(String uuid)Has wizard by user and node boolean.voidpostponeNode(String uuid, Calendar date)Postpone node.voidremoveDigitalSignature(String uuid)Remove digital signature.voidremoveGroup(String uuid, String group)Remove group.voidremoveShowWizardCategories(String uuid)Remove show wizard categories.voidremoveShowWizardKeywords(String uuid)Remove show wizard keywords.voidremoveShowWizardOCRDataCapture(String uuid)Remove show wizard ocr data capture.voidremoveWorkflow(String uuid, String workflow)Remove workflow.voidsetAutostart(String uuid)Sets autostart.
-
-
-
Method Detail
-
findByUser
List<WizardNode> findByUser() throws DatabaseException, UnknownException, WebserviceException
Find by user list.- Returns:
- the list
- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
findByUserAndUuid
WizardNode findByUserAndUuid(String uuid) throws DatabaseException, UnknownException, WebserviceException
Find by user and uuid wizard node.- Parameters:
uuid- the uuid- Returns:
- the wizard node
- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
hasWizardByUserAndNode
boolean hasWizardByUserAndNode(String uuid) throws DatabaseException, UnknownException, WebserviceException
Has wizard by user and node boolean.- Parameters:
uuid- the uuid- Returns:
- the boolean
- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
deleteAll
void deleteAll() throws DatabaseException, UnknownException, WebserviceExceptionDelete all.- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
postponeNode
void postponeNode(String uuid, Calendar date) throws DatabaseException, UnknownException, WebserviceException
Postpone node.- Parameters:
uuid- the uuiddate- the date- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
addDigitalSignature
void addDigitalSignature(String uuid, int order) throws DatabaseException, UnknownException, WebserviceException
Add digital signature.- Parameters:
uuid- the uuidorder- the order of the action- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
removeDigitalSignature
void removeDigitalSignature(String uuid) throws DatabaseException, UnknownException, WebserviceException
Remove digital signature.- Parameters:
uuid- the uuid- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
addShowWizardCategories
void addShowWizardCategories(String uuid, int order) throws DatabaseException, UnknownException, WebserviceException
Add show wizard categories.- Parameters:
uuid- the uuidorder- the order of the action- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
removeShowWizardCategories
void removeShowWizardCategories(String uuid) throws DatabaseException, UnknownException, WebserviceException
Remove show wizard categories.- Parameters:
uuid- the uuid- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
addShowWizardKeywords
void addShowWizardKeywords(String uuid, int order) throws DatabaseException, UnknownException, WebserviceException
Add show wizard keywords.- Parameters:
uuid- the uuidorder- the order of the action- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
removeShowWizardKeywords
void removeShowWizardKeywords(String uuid) throws DatabaseException, UnknownException, WebserviceException
Remove show wizard keywords.- Parameters:
uuid- the uuid- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
addShowWizardOCRDataCapture
void addShowWizardOCRDataCapture(String uuid, int order) throws DatabaseException, UnknownException, WebserviceException
Add show wizard ocr data capture.- Parameters:
uuid- the uuidorder- the order of the action- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
removeShowWizardOCRDataCapture
void removeShowWizardOCRDataCapture(String uuid) throws DatabaseException, UnknownException, WebserviceException
Remove show wizard ocr data capture.- Parameters:
uuid- the uuid- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
addGroup
void addGroup(String uuid, String group, int order) throws DatabaseException, UnknownException, WebserviceException
Add group.- Parameters:
uuid- the uuidgroup- the grouporder- the order of the action- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
removeGroup
void removeGroup(String uuid, String group) throws DatabaseException, UnknownException, WebserviceException
Remove group.- Parameters:
uuid- the uuidgroup- the group- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
addWorkflow
void addWorkflow(String uuid, String workflow, int order) throws DatabaseException, UnknownException, WebserviceException
Add workflow.- Parameters:
uuid- the uuidworkflow- the workfloworder- the order of the action- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
removeWorkflow
void removeWorkflow(String uuid, String workflow) throws DatabaseException, UnknownException, WebserviceException
Remove workflow.- Parameters:
uuid- the uuidworkflow- the workflow- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
setAutostart
void setAutostart(String uuid) throws DatabaseException, UnknownException, WebserviceException
Sets autostart.- Parameters:
uuid- the uuid- Throws:
DatabaseException- the database exceptionUnknownException- the unknown exceptionWebserviceException- the webservice exception
-
-