Skip navigation links
com.collabnet.ce.soap60.webservices.taskmgr

Interface ITaskAppSoap

    • Method Detail

      • getTaskGroupList

        TaskGroupSoapList getTaskGroupList(String sessionId,
                                           String parentId)
                                    throws RemoteException
        Returns a list of task groups for a project (in the correct order).
        Parameters:
        sessionId - User session id.
        parentId - Parent task group id -or- project id for listing top-level task groups.
        Returns:
        List of task groups within the project.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • reorderTaskGroups

        void reorderTaskGroups(String sessionId,
                               String parentFolderId,
                               String[] taskGroupIds)
                        throws RemoteException
        Sets a new order for the task groups (folders) in a parent folder. The task groups will be listed in this new order in UI.
        Parameters:
        sessionId - User session id.
        parentFolderId - the id of the parent folder
        taskGroupIds - an array of task group ids in their new order
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • createTaskGroup

        TaskGroupSoapDO createTaskGroup(String sessionId,
                                        String parentId,
                                        String title,
                                        String description)
                                 throws RemoteException
        Creates a new task group.
        Parameters:
        sessionId - User session id.
        parentId - Parent task group id -or- project id under which to create the new task group.
        title - Task group title.
        description - Task group description.
        Returns:
        Newly created task group object.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - when the a task group with the specified title already exists.
        com.collabnet.ce.soap60.fault.IllegalArgumentFault - when an argument value is invalid.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • deleteTaskGroup

        void deleteTaskGroup(String sessionId,
                             String taskGroupId)
                      throws RemoteException
        Deletes a task group.
        Parameters:
        sessionId - User session id.
        taskGroupId - Task group id.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • getTaskList

        TaskSoapList getTaskList(String sessionId,
                                 String containerId,
                                 com.collabnet.ce.soap60.types.SoapFilter[] filters)
                          throws RemoteException
        Returns a filtered list of tasks within a given project or task group.
        Change History
        Version 4.2
        • Added additional parameter (filters) for filtering task lists.
        Parameters:
        sessionId - User session id.
        containerId - Project or task group id.
        filters - Task list filters (null will return all tasks within the container).
        Returns:
        Filtered list of tasks within the project or task group.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.InvalidFilterFault - when the specified filters are invalid.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        "4.1"
      • findTasks

        TaskSoapList findTasks(String sessionId,
                               String queryString,
                               String projectId,
                               boolean searchAttachments)
                        throws RemoteException
        Finds a list of tasks matching a search string.
        Parameters:
        sessionId - User session id.
        queryString - Query string.
        projectId - The project in which to find tasks. (if null, search all projects)
        searchAttachments - Whether to search attachments.
        Returns:
        List of tasks matching search criteria.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified project id is invalid.
        com.collabnet.ce.soap60.fault.SearchQuerySyntaxFault - when the specified search query string is syntactically invalid.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        com.collabnet.ce.soap60.fault.IllegalArgumentFault - if the specified query string is invalid.
        RemoteException
        Since:
        4.1
      • getTaskGroupData

        TaskGroupSoapDO getTaskGroupData(String sessionId,
                                         String taskGroupId)
                                  throws RemoteException
        Returns data associated with the specified task group.
        Parameters:
        sessionId - User session id.
        taskGroupId - Task group id
        Returns:
        the task group data associated with the task at the given path
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • renameTaskGroup

        TaskGroupSoapDO renameTaskGroup(String sessionId,
                                        String taskGroupId,
                                        String newTitle)
                                 throws RemoteException
        Renames a task group.
        Parameters:
        sessionId - User session id.
        taskGroupId - Task group id
        newTitle - the new title for the task group
        Returns:
        the task group data for the updated group.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        com.collabnet.ce.soap60.fault.VersionMismatchFault - when task group data is stale.
        RemoteException
        Since:
        4.1
      • moveTaskGroup

        TaskGroupSoapDO moveTaskGroup(String sessionId,
                                      String taskGroupId,
                                      String targetTaskGroupId)
                               throws RemoteException
        Moves a task group.
        Parameters:
        sessionId - User session id.
        taskGroupId - The id of the task group to move.
        targetTaskGroupId - the id of the target group.
        Returns:
        the task group data for the updated group.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        com.collabnet.ce.soap60.fault.IllegalArgumentFault - on an illegal destination path
        RemoteException
        Since:
        4.1
      • getTaskData

        TaskSoapDO getTaskData(String sessionId,
                               String taskId)
                        throws RemoteException
        Returns data associated with the specified task.
        Parameters:
        sessionId - User session id.
        taskId - Task path.
        Returns:
        the task data associated with the task at the given path
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • setTaskData

        void setTaskData(String sessionId,
                         TaskSoapDO taskData,
                         String comment)
                  throws RemoteException
        Returns data associated with the specified task.
        Version 4.2
        • TaskSoapDO has a new member field (includeWeekends).
        Parameters:
        sessionId - User session id.
        taskData - Task data to set.
        comment - Comment on the changes, if any.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.VersionMismatchFault - when task data is stale.
        com.collabnet.ce.soap60.fault.PendingChangesConflictFault - when this operation conflicts with pending changes.
        com.collabnet.ce.soap60.fault.IllegalArgumentFault - when an argument value is invalid.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • createTask

        TaskSoapDO createTask(String sessionId,
                              String taskGroupId,
                              String title,
                              String description,
                              int priority,
                              String userAssignedTo,
                              String status,
                              Date startDate,
                              Date endDate,
                              int estimatedHours,
                              int requiredHours,
                              boolean includeWeekends)
                       throws RemoteException
        Creates a new task with the specified information.
        Version 4.2
        • New parameter (includeWeekends) added.
        Parameters:
        sessionId - User's session id.
        taskGroupId - Task group id.
        title - Task title.
        description - Task description.
        priority - Task priority (see TaskSoapDO for more details).
        userAssignedTo - User task is assigned to.
        status - Task status (see TaskSoapDO for more details).
        startDate - Task start date.
        endDate - Task end date.
        estimatedHours - Estimated time in hours.
        requiredHours - Required time in hours.
        includeWeekends - Whether weekends should be included in date ranges
        Returns:
        Task object.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.IllegalArgumentFault - when or more of the specified parameters are invalid.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
        See Also:
        TaskSoapDO
      • deleteTask

        void deleteTask(String sessionId,
                        String taskId)
                 throws RemoteException
        Deletes a task.
        Parameters:
        sessionId - User session id.
        taskId - Task id.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • moveTask

        TaskSoapDO moveTask(String sessionId,
                            String taskId,
                            String targetTaskGroupId)
                     throws RemoteException
        Moves a task.
        Parameters:
        sessionId - User session id.
        taskId - The id of the task to move.
        targetTaskGroupId - the id of the target group.
        Returns:
        the task group data for the updated group.
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - when a task with the same name already exists in the target group.
        com.collabnet.ce.soap60.fault.IllegalArgumentFault - if the destination path is not valid
        RemoteException
        Since:
        4.1
      • createTaskDependency

        void createTaskDependency(String sessionId,
                                  String originTaskId,
                                  String targetTaskId)
                           throws RemoteException
        Creates a task dependency.
        Parameters:
        sessionId - User session id.
        originTaskId - Origin task ID
        targetTaskId - Target task ID
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id(s) is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • deleteTaskDependency

        void deleteTaskDependency(String sessionId,
                                  String originTaskId,
                                  String targetTaskId)
                           throws RemoteException
        Deletes a task dependency.
        Parameters:
        sessionId - User session id.
        originTaskId - Origin task ID
        targetTaskId - Target task ID
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id(s) is invalid.
        com.collabnet.ce.soap60.fault.NoSuchRelationshipFault - when there's no dependency between tasks.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • getPredecessorTaskList

        TaskSoapList getPredecessorTaskList(String sessionId,
                                            String targetTaskId)
                                     throws RemoteException
        Returns a list of tasks on which the task is dependent ("predecessors").
        NOTE: Replaces listPredecessorTasks() in 4.1.
        Parameters:
        sessionId - User session id.
        targetTaskId - Target task ID
        Returns:
        List of predecessor tasks
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id(s) is invalid.
        com.collabnet.ce.soap60.fault.NoSuchRelationshipFault - when there's no dependency between tasks.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.2
      • hasTasksWithPendingChanges

        boolean hasTasksWithPendingChanges(String sessionId,
                                           String taskGroupId)
                                    throws RemoteException
        Returns true if a folder has any items with pending changes under it.
        Parameters:
        sessionId - User session id.
        taskGroupId - Task group id.
        Returns:
        true if a folder has any items with pending changes under it, false otherwise
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id(s) is invalid.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.1
      • getSuccessorTaskList

        TaskSoapList getSuccessorTaskList(String sessionId,
                                          String originTaskId)
                                   throws RemoteException
        Returns a list of tasks which are dependent on the task ("successors").
        NOTE: Replaces listSuccessorTasks() in 4.1.
        Parameters:
        sessionId - User session id.
        originTaskId - Origin task ID
        Returns:
        List of successor tasks
        Throws:
        com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.
        com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id(s) is invalid.
        com.collabnet.ce.soap60.fault.NoSuchRelationshipFault - when there's no dependency between tasks.
        com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.
        com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system level error occurs.
        RemoteException
        Since:
        4.2

Copyright © 2017 CollabNet. All Rights Reserved.