Package com.openkm.sdk4j.definition
Interface BaseActivity
-
- All Known Implementing Classes:
ActivityImpl
public interface BaseActivityBaseActivity- Author:
- sochoa
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActivityListfindActivityLog(int page, int length, Calendar beginDate, Calendar endDate, String user, String action, String item)Returns a list of all activity log by date, user, action and item.List<String>getActivityActions()Returns a list of all the activity log actions.
-
-
-
Method Detail
-
findActivityLog
ActivityList findActivityLog(int page, int length, Calendar beginDate, Calendar endDate, String user, String action, String item) throws LockException, PathNotFoundException, AccessDeniedException, RepositoryException, DatabaseException, WebserviceException, UnknownException
Returns a list of all activity log by date, user, action and item.- Parameters:
page- the pagelength- the lengthbeginDate- the begin dateendDate- the end dateuser- the useraction- the actionitem- Node uuid- Returns:
- ActivityList activity list
- Throws:
LockException- the lock exceptionPathNotFoundException- the path not found exceptionAccessDeniedException- the access denied exceptionRepositoryException- the repository exceptionDatabaseException- the database exceptionWebserviceException- the webservice exceptionUnknownException- the unknown exception
-
getActivityActions
List<String> getActivityActions() throws PathNotFoundException, AccessDeniedException, RepositoryException, DatabaseException, WebserviceException, UnknownException
Returns a list of all the activity log actions.- Returns:
- List
activity actions - Throws:
PathNotFoundException- the path not found exceptionAccessDeniedException- the access denied exceptionRepositoryException- the repository exceptionDatabaseException- the database exceptionWebserviceException- the webservice exceptionUnknownException- the unknown exception
-
-