Uses of Class
com.collabnet.ce.soap60.fault.SystemFault
-
-
Uses of SystemFault in com.collabnet.ce.soap60.webservices
Methods in com.collabnet.ce.soap60.webservices that throw SystemFault Modifier and Type Method Description protected booleanWebService. canGiveFullUserDetails(String username, String loggedInUser)Overloaded form to process `UserSoapRow'protected voidWebService. checkGeneralPermission(com.vasoftware.sf.server.types.Path path, com.vasoftware.sf.common.access.rbac.Operation operation, String loggedInUser)Check to see if the user has the specified permission, without doing any resource checking.protected voidWebService. checkPermission(com.vasoftware.sf.server.types.ObjectKey objectId, com.vasoftware.sf.common.access.rbac.Operation operation, com.vasoftware.sf.server.types.ProjectPath projectPath, String loggedInUser)Checks RBAC permission and throws an exception if permission is denied.protected voidWebService. checkPermission(com.vasoftware.sf.server.types.Path path, com.vasoftware.sf.common.access.rbac.Operation operation, String loggedInUser)Checks RBAC permission and throws an exception if permission is denied.protected voidWebService. checkSiteWidePermission(com.vasoftware.sf.common.access.rbac.Operation operation, String loggedInUser)Checks if the current user has the given site wide permission to perform the operationprotected javax.activation.DataHandlerWebService. downloadFile(com.vasoftware.sf.server.types.GuidKey fileKey, String loggedInUser)Downloads a file stored within the file storage.protected StringWebService. generateFolderName(com.vasoftware.sf.server.types.FolderPath folderPath, String title, String loggedInUser)Generates unique folder name from title.protected longWebService. getStoredFileSize(com.vasoftware.sf.server.types.GuidKey fileKey, String loggedInUser)Returns the size of a stored file.protected StringWebService. getStoredFileText(com.vasoftware.sf.server.types.GuidKey fileKey, String loggedInUser)Returns the text content of a stored file.protected booleanWebService. hasPermission(com.vasoftware.sf.server.types.ObjectKey objectId, com.vasoftware.sf.common.access.rbac.Operation operation, com.vasoftware.sf.server.types.ProjectPath projectPath, String loggedInUser)Checks RBAC permission.protected booleanWebService. hasSiteWidePermission(com.vasoftware.sf.common.access.rbac.Operation operation, String loggedInUser)Checks if the current user has the given site wide permission to perform the operationprotected com.vasoftware.sf.server.services.filestorage.StoredFileDO[]WebService. makeStoredFileDO(String fileName, String mimeType, String fileId, String loggedInUser)Prepare StoredFileDO objectprotected com.vasoftware.sf.server.services.filestorage.StoredFileDO[]WebService. makeStoredFileDOs(AttachmentSoapDO[] attachmentFiles, String loggedInUser)Makes StoredFileDo's from Attachment List.protected voidWebService. requireProjectAdminPermission(String projectId, String loggedInUser)Checks to see if the currently logged in user is a user with project administrator edit permission.protected voidWebService. setPartialOrFullUserData(UserSoapList userSoapList, String loggedInUser)Overloaded form for processing `UserSoapList'protected com.vasoftware.sf.server.types.GuidKeyWebService. storeFile(String fileId, String loggedInUser)Stores uploaded file in the file storage.protected com.vasoftware.sf.server.types.GuidKeyWebService. storeTextFile(String text, String loggedInUser)Stores text as a file. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.categorization
Methods in com.collabnet.ce.soap60.webservices.categorization that throw SystemFault Modifier and Type Method Description voidCategorizationAppSoap. addProjectToCategory(String sessionId, String projectId, String categoryId)Adds a given project to a category.CategorySoapDOCategorizationAppSoap. createCategory(String sessionId, String parentId, String title, String description)Creates a categoryvoidCategorizationAppSoap. deleteCategory(String sessionId, String categoryId)Deletes an category.CategorySoapListCategorizationAppSoap. getAllCategories(String sessionId)Returns a list of all categories.CategorySoapDOCategorizationAppSoap. getCategoryData(String sessionId, String categoryId)Returns a data object for a given categoryProjectSoapListCategorizationAppSoap. getCategoryProjects(String sessionId, String categoryId, boolean includeSubcategories)Gets list of projects in the specified category and, if requested, subcategoriesCategorySoapListCategorizationAppSoap. getProjectCategories(String sessionId, String projectId)Returns a list of categories the project belongs toCategorySoapDOCategorizationAppSoap. getRootCategoryData(String sessionId)Returns a data object for the root categoryCategorySoapListCategorizationAppSoap. getSubcategories(String sessionId, String categoryId, boolean recursive)Returns a list of subcategories to the specified category.ProjectSoapListCategorizationAppSoap. getUncategorizedProjects(String sessionId)Gets list of projects that have not been categorizedbooleanCategorizationAppSoap. isCategorizationEnabled(String sessionId)Checks if categorization support is enabled site-wide.voidCategorizationAppSoap. moveCategory(String sessionId, String categoryId, String dstCategoryId)Moves a Category including all subcategories under different parent.voidCategorizationAppSoap. removeProjectFromCategory(String sessionId, String projectId, String categoryId)Removes a given project from a category.voidCategorizationAppSoap. setCategoryData(String sessionId, CategorySoapDO categoryData)Sets data on a specific category -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.cemain
Methods in com.collabnet.ce.soap60.webservices.cemain that throw SystemFault Modifier and Type Method Description voidCollabNetSoap. addProjectGroupAdmins(String sessionId, String projectGroupId, String[] usernames)Makes the users given in the usernames parameter as administrators of the Project Group represented by the projectGroupId.voidCollabNetSoap. addProjectGroupMember(String sessionId, String projectGroupId, String userName)Makes a user a member of a project group.voidCollabNetSoap. addProjectMember(String sessionId, String projectId, String userName)Makes a user a member of a project.voidCollabNetSoap. addProjectsToProjectGroup(String sessionId, String projectGroupId, String[] projectIds)Adds the given projects to a project group.voidCollabNetSoap. addUserGroupMember(String sessionId, String userGroupId, String userName)Adds a user to a user group.booleanCollabNetSoap. canReceiveOwnUpdates(String sessionId)Returns whether the current user receives notifications for the user's own updates.voidCollabNetSoap. changeIAObjectTitle(String sessionId, String pluggableObjectId, String pluggableObjectTitle)Updates the title for Pluggable objects only.booleanCollabNetSoap. changePassword(String sessionId, String userName, String newPassword)Allows the user to change the password
Note: From 16.7, the length of password cannot exceed the value of the configuration variable "MAX_PASSWORD_LENGTH" specified in the site-options.conf file.voidCollabNetSoap. createAssociation(String sessionId, String originId, String targetId, String description)Creates an association between two objects.voidCollabNetSoap. createAssociationWithTitles(String sessionId, String originId, String originTitle, String targetId, String targetTitle, String description)Creates an association between two objects with specified title.ProjectSoapDOCollabNetSoap. createOrReplaceProjectTemplate(String sessionId, String projectId, String title, String description, String[] contentChoices, String templateId)Creates or replaces a template from an existing projectProjectSoapDOCollabNetSoap. createProject(String sessionId, String name, String title, String description)Creates a project.ProjectSoapDOCollabNetSoap. createProjectFromTemplate(String sessionId, String templateId, String name, String title, String description)Creates a project from template.ProjectGroupSoapDOCollabNetSoap. createProjectGroup(String sessionId, String title, String description)Creates a Project Group.StringCollabNetSoap. createProjectLinkedApp(String sessionId, String projectId, String title, String applicationUrl, String iconKey, String iconFileName, String iconMimeType, boolean singleSignon)Creates linked application in a given project and return the created application IdStringCollabNetSoap. createProjectLinkedApp2(String sessionId, String projectId, String title, String applicationUrl, String iconKey, String iconFileName, String iconMimeType, boolean singleSignon, String toolId)Creates linked application in a given project and return the created application IdStringCollabNetSoap. createSiteWideLinkedApp(String sessionId, String title, String applicationUrl, String applicationType, boolean singleSignon)Create a site-wide linked application and return the created application IdUserSoapDOCollabNetSoap. createUser(String sessionId, String userName, String email, String fullName, String organization, String locale, String timeZone, String licenseType, boolean isSuperUser, boolean isRestrictedUser, String password)Creates a new user with the specified parameters.UserGroupSoapDOCollabNetSoap. createUserGroup(String sessionId, String fullName, String description)Creates a new user group with the specified parameters.voidCollabNetSoap. deleteAssociation(String sessionId, String originId, String targetId)Deletes an association between two objectsvoidCollabNetSoap. deleteAttachment(String sessionId, String objectId, String attachmentId)Deletes the specified attachment of the specified object.voidCollabNetSoap. deleteLinkedApp(String sessionId, String linkedAppId)Delete the linked application.voidCollabNetSoap. deleteProject(String sessionId, String projectId, boolean noNotification, boolean forceDeleteEvenIfChildFound)Deletes a project.voidCollabNetSoap. deleteProjectGroup(String sessionId, String projectGroupId, boolean forceDeleteEvenIfMemberProjectFound)Deletes a project group.voidCollabNetSoap. deleteUserGroup(String sessionId, String groupId)Deletes a user group.StringCollabNetSoap. doMandatoryPasswordChange(String userName, String oldPassword, String newPassword)Allows user to change the password if and only if the password was set by an administrator.ProjectSoapListCollabNetSoap. findProjects(String sessionId, String queryString)Finds a list of projects matching a search string.UserSoapListCollabNetSoap. findUsers(String sessionId, String queryString)Finds a list of users matching a search string.AssociationSoapListCollabNetSoap. getAssociationList(String sessionId, String objectId)Lists all of the associations for a given object.AuditHistorySoapListCollabNetSoap. getAuditHistoryList(String sessionId, String objectId, boolean includeDerivedChanges)Returns the list of changes made to the specified object in reverse chronological order.CommentSoapListCollabNetSoap. getCommentList(String sessionId, String objectId)Gets list of comments for object.StringCollabNetSoap. getConfigurationValue(String sessionId, String keyValue)Gets Configuration value for the passed key.StringCollabNetSoap. getJSessionId(String oneTimeToken)Returns current user Jsession Id using one time token idLinkedApplicationSoapDOCollabNetSoap. getLinkedApplicationData(String sessionId, String linkedAppId)Gets Linked Application Data by Linked Application IdLinkedApplication2SoapDOCollabNetSoap. getLinkedApplicationData2(String sessionId, String linkedAppId)Gets Linked Application Data by Linked Application IdProjectSoapListCollabNetSoap. getMemberProjectsForProjectGroup(String sessionId, String projectGroupId)Gets the Project List for project group.intCollabNetSoap. getProjectAccessLevel(String sessionId, String projectId)Gets the project's access level.ProjectSoapDOCollabNetSoap. getProjectByPath(String sessionId, String projectPath)Gets the project data for a given project path.ProjectSoapDOCollabNetSoap. getProjectData(String sessionId, String projectId)Gets a project object which includes the parent project ID, project hierarchy path and locked status flag.longCollabNetSoap. getProjectDiskUsage(String sessionId, String projectId)Gets the filestorage disk utilization of a project specified by a project idProjectGroupSoapDOCollabNetSoap. getProjectGroupData(String sessionId, String projectGroupId)Gets the Project Group Data by project group id.ProjectGroupMemberSoapListCollabNetSoap. getProjectGroupMemberList(String sessionId, String projectGroupId)Returns project group membership list.ProjectGroupSoapListCollabNetSoap. getProjectGroupsForProject(String sessionId, String projectId)Deprecated.in favour of getProjectGroupsForProject1ProjectGroupSoapListCollabNetSoap. getProjectGroupsForProject1(String sessionId, String projectId)Gets ProjectGroupList by project and user should have view permissionSoapNamedValuesCollabNetSoap. getProjectHierarchyPaths(String sessionId, String[] projectIds)Returns the hierarchy path of the given projects.ProjectSoapListCollabNetSoap. getProjectList(String sessionId, boolean fetchHierarchyPath)Returns a list of all projects visible to the user.ProjectSoapListCollabNetSoap. getProjectListForUser(String sessionId, String username, boolean fetchHierarchyPath, boolean includeGroupMembership)Returns a list of projects the user passed as parameter is a member of (the list contains only the projects that the soap caller has the right to see).ProjectMemberSoapListCollabNetSoap. getProjectMemberList(String sessionId, String projectId)Returns project membership list.longCollabNetSoap. getProjectQuota(String sessionId, String projectId)Gets the disk quota for a project.StringCollabNetSoap. getSessionId(String oneTimeToken)Returns current user session Id using one time token idProjectSoapListCollabNetSoap. getSubprojectList(String sessionId, String projectId, boolean fetchHierarchyPath)Returns a list of the immediate sub projects of a project.UserSoapDOCollabNetSoap. getUserByEmail(String sessionId, String email)Returns the user information for the given email address.UserSoapDOCollabNetSoap. getUserByName(String sessionId, String fullname)Returns the user information for the given full name.UserSoapDOCollabNetSoap. getUserData(String sessionId, String username)Gets the user details for the given username.User2SoapDOCollabNetSoap. getUserData2(String sessionId, String username)Gets the user details for the given username.UserGroupSoapDOCollabNetSoap. getUserGroupData(String sessionId, String groupId)Returns the user group information.UserGroupSoapListCollabNetSoap. getUserGroupList(String sessionId)Gets a list of all user groups on the system.UserGroupSoapListCollabNetSoap. getUserGroupListForProject(String sessionId, String projectOrProjectGroupId)Returns a list of user groups that have a role in the project.UserGroupSoapListCollabNetSoap. getUserGroupListForUser(String sessionId, String username)Gets a list of all user groups the user belongs.UserSoapListCollabNetSoap. getUserGroupMembers(String sessionId, String groupId)Gets a list of active users who are members of a user groupUserSoapListCollabNetSoap. getUserList(String sessionId, SoapFilter soapFilter)Deprecated.use getUserList2 instead, which includes organization, alternate emails, locale and timeZone details in the result.User2SoapListCollabNetSoap. getUserList2(String sessionId, SoapFilter soapFilter)Gets a list of all users on the system.VersionInformationSoapListCollabNetSoap. getVersionInformationList(String sessionId, String folderId)Obtains a list of versions and last modified dates for the objects residing in the specified folder.StringCollabNetSoap. getWebAndSoapSessionId(String oneTimeToken)Gets the web and soap session id's separated by &booleanCollabNetSoap. hasGeneralPermission(String sessionId, String username, String projectId, String operationString, String objectId)Checks if the user has general permission for the resource (specified by objectid).booleanCollabNetSoap. hasPermission(String sessionId, String username, String projectId, String operationString, String objectId)Checks whether the given user has permission for an operation on a specified object Note on an exceptional behavior: It returns false, if the calling user does not have 'Project view' permission.booleanCollabNetSoap. hasPermission2(String sessionId, String projectId, String operationString, String objectId)Checks whether the current user has permission for an operation on a specified object Note on an exceptional behavior: It returns false, if the calling user does not have 'Project view' permission.booleanCollabNetSoap. hasSitewideRolePermission(String sessionId, String operationString)Checks if the current user has the given site wide permission to perform the operation.AttachmentSoapListCollabNetSoap. listAttachments(String sessionId, String objectId)Lists the attachments associated with the object, the attachment itself is not part of the returned object.UserGroupSoapListCollabNetSoap. listGroupsWithGeneralPermission(String sessionId, String projectId, String operationString, String folderId, boolean includeInherited)Returns a list of user groups which have some permission to perform the given operation in the given folder (Doesn't check default access permission nor site admins)UserSoapListCollabNetSoap. listProjectAdmins(String sessionId, String projectId)Returns project administrators list.ProjectGroupSoapListCollabNetSoap. listProjectGroups(String sessionId)Returns a list of all projects groups.LinkedApplicationSoapListCollabNetSoap. listProjectLinkedApps(String sessionId, String projectId)Lists project-level linked applications for a given project.LinkedApplication2SoapListCollabNetSoap. listProjectLinkedApps2(String sessionId, String projectId)Lists project-level linked applications for a given project.LinkedApplicationSoapListCollabNetSoap. listSiteWideLinkedApps(String sessionId)Lists site-wide linked applications.ProjectSoapListCollabNetSoap. listTemplates(String sessionId)Lists project templates within the installation.UserSoapListCollabNetSoap. listUsersWithGeneralPermission(String sessionId, String projectId, String operationString, String folderId)Returns a list of users who have some permission to perform the given operation in the given folder (Doesn't check default access permission nor site admins)UserSoapListCollabNetSoap. listUsersWithPermissionOnObject(String sessionId, String operationString, String objectId, int flag)Returns the list of users who have the given permission on the given object.ProjectSoapDOCollabNetSoap. lockProject(String sessionId, String projectId)Locks project.StringCollabNetSoap. login(String userName, String password)Logs in a user and creates a new session.This will throw login fault if the user's password was set by an administrator and if the user has not changed it yet.StringCollabNetSoap. loginAnonymous(String anonSharedSecret)This method allows to login as anonymous to get TF default access.StringCollabNetSoap. loginWithToken(String username, String oneTimeToken)Logs in a user and creates a new session.voidCollabNetSoap. logoff(String userName, String sessionId)Ends a user's session, but the token can still be used until it expires.voidCollabNetSoap. removeProjectGroupAdmins(String sessionId, String projectGroupId, String[] usernames)Removes the users given in the usernames parameter from the administrator role of the Project Group represented by the projectGroupId.voidCollabNetSoap. removeProjectGroupMember(String sessionId, String projectGroupId, String userName)Removes a user from a project group.voidCollabNetSoap. removeProjectMember(String sessionId, String projectId, String userName)Removes a user from a project.voidCollabNetSoap. removeProjectsFromProjectGroup(String sessionId, String[] projectMemberIds, String projectGroupId)Removes projects from project groupvoidCollabNetSoap. removeUserGroupMember(String sessionId, String userGroupId, String userName)Removes a user from a user group.voidCollabNetSoap. setLinkedApplicationData(String sessionId, LinkedApplicationSoapDO linkedApplicationSoapDO, String iconKey, String iconFileName, String iconMimeType)Sets the linked application.voidCollabNetSoap. setLinkedApplicationData2(String sessionId, LinkedApplication2SoapDO linkedApplication2SoapDO, String iconKey, String iconFileName, String iconMimeType)Sets the linked application.voidCollabNetSoap. setParentProject(String sessionId, String projectId, String parentProjectId)Sets the parent of a project.voidCollabNetSoap. setProjectAccessLevel(String sessionId, String projectId, int accessLevel)Sets the project access level.voidCollabNetSoap. setProjectGroupData(String sessionId, ProjectGroupSoapDO projectGroupData)Sets the project group's data with the data represented in the projectGroupData parameter.voidCollabNetSoap. setProjectQuota(String sessionId, String projectId, long quota)Sets the disk quota for a project.voidCollabNetSoap. setUserData(String sessionId, UserSoapDO userData)Sets the user information.voidCollabNetSoap. setUserData2(String sessionId, User2SoapDO userData)Sets the user information.voidCollabNetSoap. setUserGroupData(String sessionId, UserGroupSoapDO groupData)Sets the user group information.ProjectSoapDOCollabNetSoap. unLockProject(String sessionId, String projectId)Un-Locks project. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.discussion
Methods in com.collabnet.ce.soap60.webservices.discussion that throw SystemFault Modifier and Type Method Description ForumSoapDODiscussionAppSoap. createForum(String sessionId, String projectId, String listName, String forumName, String description, boolean listEnabled, String prefix, String footer, String forumType, String[] moderators, String[] trustedUsers, String replyTo, int messageSize)Creates a discussion forumForum2SoapDODiscussionAppSoap. createForum2(String sessionId, String projectId, String listName, String forumName, String description, boolean listEnabled, String prefix, String footer, String forumType, String[] moderators, String[] trustedUsers, String replyTo, int messageSize, int emailPosting, int emailMonitoring, int webPosting, String captcha)Creates a public discussion forumPostSoapDODiscussionAppSoap. createPost(String sessionId, String parentPostId, String title, String message, String attachmentFileName, String attachmentMimeType, String attachmentFileId, String ccRecipients)Posts a new message to the discussion topic.PostSoapDODiscussionAppSoap. createPost2(String sessionId, String parentPostId, String title, String message, AttachmentSoapDO[] attachments, String ccRecipients)Posts a new message to the discussion topic with multiple attachment support.ForumSoapDODiscussionAppSoap. createPrivateForum(String sessionId, String projectId, String listName, String forumName, String description, boolean listEnabled, String prefix, String footer, String forumType, String[] moderators, String[] trustedUsers, String replyTo, int messageSize)Creates a discussion forumForum2SoapDODiscussionAppSoap. createPrivateForum2(String sessionId, String projectId, String listName, String forumName, String description, boolean listEnabled, String prefix, String footer, String forumType, String[] moderators, String[] trustedUsers, String replyTo, int messageSize, int emailPosting, int emailMonitoring, int webPosting, String captcha)Creates a private discussion forumTopicSoapDODiscussionAppSoap. createTopic(String sessionId, String forumId, String title, String message, String attachmentFileName, String attachmentMimeType, String attachmentFileId, String ccRecipients)Creates a new discussion topic within a specified forum but unlikecreateTopic, this method lets you set the attachment files and cc email values at creation time and returns a TopicSoapData ObjectTopicSoapDODiscussionAppSoap. createTopic2(String sessionId, String forumId, String title, String message, AttachmentSoapDO[] attachments, String ccRecipients)Creates a new discussion topic within a specified forum but unlikecreateTopic, this method lets you set the attachment files and cc email values at creation time and returns a TopicSoapData ObjectvoidDiscussionAppSoap. deletePost(String sessionId, String postId)Deletes the specified post.voidDiscussionAppSoap. deleteTopic(String sessionId, String topicId)Deletes the specified topic.PostSoapListDiscussionAppSoap. findPosts(String sessionId, String queryString, String projectId, boolean searchAttachments)Finds a list of posts matching a search string.ForumSoapListDiscussionAppSoap. getForumList(String sessionId, String projectId)Returns a list of forums within a specified project.Forum2SoapListDiscussionAppSoap. getForumList2(String sessionId, String projectId)Returns a list of forums within a specified project.PostSoapListDiscussionAppSoap. getPostList(String sessionId, String topicId)Returns a list of posts associated with a specified topic.TopicSoapListDiscussionAppSoap. getTopicList(String sessionId, String forumId)Gets a list of all topics in a forum. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.docman
Methods in com.collabnet.ce.soap60.webservices.docman that throw SystemFault Modifier and Type Method Description voidDocumentAppSoap. addDateField(String sessionId, String projectId, String fieldName, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String helpText)Adds a custom Date field to documents.voidDocumentAppSoap. addMultiSelectField(String sessionId, String projectId, String fieldName, int displayLines, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String[] fieldValues, String[] defaultValues, String helpText)Adds a custom multi select field to documents.voidDocumentAppSoap. addSeparator(String sessionId, String projectId, String separatorType, String separatorLabel)Adds a separator to a document root folder.voidDocumentAppSoap. addSingleSelectChildField(String sessionId, String projectId, String fieldName, String[] fieldValues, String parentFieldId, SoapNamedValues parentChildFieldValueMap, String helpText)Adds a custom single select field to documents.voidDocumentAppSoap. addSingleSelectField(String sessionId, String projectId, String fieldName, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String[] fieldValues, String defaultValue, String helpText)Adds a custom single select field to documents.voidDocumentAppSoap. addTextField(String sessionId, String projectId, String fieldName, int displayColumns, int displayLines, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String defaultValue, String helpText, String pattern)Adds a custom text field to documents.voidDocumentAppSoap. addUserSelectField(String sessionId, String projectId, String fieldName, int displayLines, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String[] defaultValues, String userFilter, String helpText)Adds a custom User selection field to documents.DocumentSoapDODocumentAppSoap. createDocument(String sessionId, String parentId, String title, String description, String versionComment, String status, boolean createLocked, String fileName, String mimeType, String fileId, String associationId, String associationDesc)Deprecated.in favor of createDocument2Document2SoapDODocumentAppSoap. createDocument2(String sessionId, String parentId, String title, String description, String versionComment, String status, boolean createLocked, boolean createDownloadRestricted, boolean allowForceUnlock, String fileName, String mimeType, String fileId, String associationId, String associationDesc)Deprecated.in favor of createDocument3Document3SoapDODocumentAppSoap. createDocument3(String sessionId, String parentId, String title, String description, String versionComment, String status, boolean createLocked, boolean createDownloadRestricted, boolean allowForceUnlock, String fileName, String mimeType, String fileId, String associationId, String associationDesc, SoapFieldValues flexFields)Creates a new document with the specified title, description, etc.DocumentFolderSoapDODocumentAppSoap. createDocumentFolder(String sessionId, String parentId, String title, String description)Creates a new document folder with the specified title, description, etc.DocumentSoapDODocumentAppSoap. createDocumentWithUrl(String sessionId, String parentId, String title, String description, String versionComment, String status, boolean createLocked, String fileUrl, String associationId, String associationDesc)Deprecated.in favor of createDocumentWithUrl2Document2SoapDODocumentAppSoap. createDocumentWithUrl2(String sessionId, String parentId, String title, String description, String versionComment, String status, boolean createLocked, boolean createDownloadRestricted, boolean allowForceUnlock, String fileUrl, String associationId, String associationDesc)Deprecated.in favor of createDocumentWithUrl3Document3SoapDODocumentAppSoap. createDocumentWithUrl3(String sessionId, String parentId, String title, String description, String versionComment, String status, boolean createLocked, boolean createDownloadRestricted, boolean allowForceUnlock, String fileUrl, String associationId, String associationDesc, SoapFieldValues flexFields)Creates a new document with the specified title, description, etc.DocumentReviewSoapDODocumentAppSoap. createReview(String sessionId, String documentId, int version, String title, String description, Date dueDate, String[] requiredReviewers, String[] optionalReviewers, boolean attachDocument)Creates a document review cyclevoidDocumentAppSoap. deleteDocument(String sessionId, String documentId)Deletes a document.Locked document(s) cannot be deleted, When a locked document's id is passed to this API, a SystemFault will be thrown.voidDocumentAppSoap. deleteDocumentByVersions(String sessionId, String documentId, int[] versionNumbers)Deletes particular version(s) of a document.Locked document version(s) cannot be deleted, When a locked document's id is passed to this API, a SystemFault will be thrown.voidDocumentAppSoap. deleteDocumentFolder(String sessionId, String folderId)Deletes a document folder with the specified id.voidDocumentAppSoap. deleteField(String sessionId, String fieldId)Deletes a custom/flex-field.voidDocumentAppSoap. deleteSeparator(String sessionId, String layoutId)Deletes a separator of a document root folder layout.DocumentSoapListDocumentAppSoap. findDocuments(String sessionId, String queryString, String projectId, boolean searchAttachments, boolean currentVersionsOnly)Deprecated.in favor of findDocuments2Document2SoapListDocumentAppSoap. findDocuments2(String sessionId, String queryString, String projectId, boolean searchAttachments, boolean currentVersionsOnly)Finds a list of documents matching a search string.Document3SoapListDocumentAppSoap. findDocuments3(String sessionId, String queryString, String projectId, boolean searchAttachments, boolean currentVersionsOnly)Finds a list of documents matching a search string.DocumentReviewSoapListDocumentAppSoap. getAssignedDocumentReviewList(String sessionId, String username)Lists all document reviews assigned to a user for review.DocumentSoapDODocumentAppSoap. getDocumentData(String sessionId, String documentId, int documentVersion)Deprecated.in favor of getDocumentData2Document2SoapDODocumentAppSoap. getDocumentData2(String sessionId, String documentId, int documentVersion)Deprecated.in favor of getDocumentData3Document3SoapDODocumentAppSoap. getDocumentData3(String sessionId, String documentId, int documentVersion)Gets specified document data.StringDocumentAppSoap. getDocumentFileId(String sessionId, String documentId, int documentVersion)Returns a the file id associated with the document file.DocumentFolderSoapDODocumentAppSoap. getDocumentFolderData(String sessionId, String folderId)Gets detailed data on a document folderDocumentFolderSoapListDocumentAppSoap. getDocumentFolderList(String sessionId, String parentId, boolean recursive)Lists document folders.DocumentSoapListDocumentAppSoap. getDocumentList(String sessionId, String parentId, SoapFilter[] filters)Deprecated.in favor of getDocumentList2Document2SoapListDocumentAppSoap. getDocumentList2(String sessionId, String parentId, SoapFilter[] filters)Lists all documents within a document folder.Document3SoapListDocumentAppSoap. getDocumentList3(String sessionId, String documentFolderId, SoapFilter[] filters)Lists all documents within a document folder.DocumentReviewSoapListDocumentAppSoap. getDocumentReviewList(String sessionId, String containerId, SoapFilter[] filters)Lists all document reviews within a project or a document.Document2SoapListDocumentAppSoap. getDocumentVersions(String sessionId, String documentId, boolean includeDeletedVersions)Lists all the versions of a document.DocumentFolderFieldSoapDO[]DocumentAppSoap. getFields(String sessionId, String projectId)Returns the custom/flex-fields associated with the given project's document root folder.OrderedDocumentFolderFieldSoapListDocumentAppSoap. getOrderedDocumentFields(String sessionId, String projectId)Returns all the custom/flex-fields and the separators associated with the given project's document root folder with layout information.static DocumentReviewSoapListDocumentReviewSoapListMarshaler. marshalDocumentReviewList(com.collabnet.ctf.document.service.DocumentService docman, com.vasoftware.sf.server.types.UserSessionKey sessionKey, com.vasoftware.sf.server.services.docman.CreatedReviewList createdReviewList)Converts a list of outstanding reviews to a SOAP compatible list.static DocumentReviewSoapListDocumentReviewSoapListMarshaler. marshalDocumentReviewList(com.collabnet.ctf.document.service.DocumentService docman, com.vasoftware.sf.server.types.UserSessionKey sessionKey, com.vasoftware.sf.server.services.docman.DocumentReviewList documentReviewList)Converts a list of document reviews to a SOAP compatible list.static DocumentReviewSoapListDocumentReviewSoapListMarshaler. marshalDocumentReviewList(com.collabnet.ctf.document.service.DocumentService docman, com.vasoftware.sf.server.types.UserSessionKey sessionKey, com.vasoftware.sf.server.services.docman.OutstandingReviewList outstandingReviewList)Converts a list of outstanding reviews to a SOAP compatible list.DocumentSoapDODocumentAppSoap. moveDocument(String sessionId, String documentId, String targetFolderId)Deprecated.in favor of moveDocument2Document2SoapDODocumentAppSoap. moveDocument2(String sessionId, String documentId, String targetFolderId)Deprecated.in favor of moveDocument3Document3SoapDODocumentAppSoap. moveDocument3(String sessionId, String documentId, String targetFolderId)Moves a document to a specified target folder.DocumentFolderSoapDODocumentAppSoap. moveDocumentFolder(String sessionId, String folderId, String destFolderId)Moves document foldervoidDocumentAppSoap. reorderDocumentFields(String sessionId, String projectId, String[] layoutIds)Sets a new order of the fields and the separators within the given project's document root folder.voidDocumentAppSoap. setDocumentData(String sessionId, DocumentSoapDO documentData, String fileId)Deprecated.in favor of setDocumentData2voidDocumentAppSoap. setDocumentData2(String sessionId, Document2SoapDO documentData, String fileId)Deprecated.in favor of setDocumentData3voidDocumentAppSoap. setDocumentData3(String sessionId, Document3SoapDO documentData, String fileId)Sets specified document data.voidDocumentAppSoap. setDocumentDataWithAssociation(String sessionId, DocumentSoapDO documentData, String fileId, String associationId, String associationComment)Deprecated.in favor of setDocumentDataWithAssociation2voidDocumentAppSoap. setDocumentDataWithAssociation2(String sessionId, Document2SoapDO documentData, String fileId, String associationId, String associationComment)Deprecated.in favor of setDocumentDataWithAssociation3voidDocumentAppSoap. setDocumentDataWithAssociation3(String sessionId, Document3SoapDO documentData, String fileId, String associationId, String associationComment)Sets specified document data with association.voidDocumentAppSoap. setDocumentFolderData(String sessionId, DocumentFolderSoapDO documentFolderData)Sets detailed data on a document foldervoidDocumentAppSoap. setField(String sessionId, DocumentFolderFieldSoapDO fieldData)Sets a custom/flex-field. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.filestorage
Methods in com.collabnet.ce.soap60.webservices.filestorage that throw SystemFault Modifier and Type Method Description javax.activation.DataHandlerFileStorageAppSoap. downloadFile(String sessionId, String fileStorageId)Downloads file as SOAP attachment.javax.activation.DataHandlerFileStorageAppSoap. downloadFileDirect(String sessionId, String containerId, String rawFileId)Downloads file Direct as SOAP attachment.voidSimpleFileStorageAppSoap. endFileUpload(String sessionId, String fileStorageId)Closes and saves uploaded file.longSimpleFileStorageAppSoap. getSize(String sessionId, String fileStorageId)Returns size of the specified temporary storage file in bytes.byte[]SimpleFileStorageAppSoap. read(String sessionId, String fileStorageId, int offset, int length)Reads from file a specified a number of bytes from the offset specified.byte[]SimpleFileStorageAppSoap. read2(String sessionId, String fileStorageId, long offset, int length)Reads from file a specified a number of bytes from the offset specified.StringSimpleFileStorageAppSoap. startFileUpload(String sessionId)Opens a new file descriptor for uploading and returns the temporary storage id.StringFileStorageAppSoap. uploadFile(String sessionId, javax.activation.DataHandler file)Uploads a file as SOAP attachment.voidSimpleFileStorageAppSoap. write(String sessionId, String fileStorageId, byte[] data)Appends data to the file being uploaded. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.frs
Methods in com.collabnet.ce.soap60.webservices.frs that throw SystemFault Modifier and Type Method Description FrsFileSoapDOFrsAppSoap. createFrsFile(String sessionId, String releaseId, String fileName, String mimeType, String fileId)Creates a new FRS file and adds it to the specified release.PackageSoapDOFrsAppSoap. createPackage(String sessionId, String projectId, String title, String description, boolean isPublished)Creates a new FRS package.ReleaseSoapDOFrsAppSoap. createRelease(String sessionId, String packageId, String title, String description, String status, String maturity)Creates a new release within a specified package.voidFrsAppSoap. deleteFrsFile(String sessionId, String frsFileId)Deletes the specified file.voidFrsAppSoap. deletePackage(String sessionId, String packageId)Deletes the specified package.voidFrsAppSoap. deleteRelease(String sessionId, String releaseId)Deletes the specified release.ArtifactSoapListFrsAppSoap. getArtifactListReportedInRelease(String sessionId, String releaseId)Lists artifacts that were found in the given release.Artifact2SoapListFrsAppSoap. getArtifactListReportedInRelease2(String sessionId, String releaseId)Lists artifacts that were found in the given release.ArtifactSoapListFrsAppSoap. getArtifactListResolvedInRelease(String sessionId, String releaseId)Lists artifacts that were resolved in the given release.Artifact2SoapListFrsAppSoap. getArtifactListResolvedInRelease2(String sessionId, String releaseId)Lists artifacts that were resolved in the given release.FrsFileSoapDOFrsAppSoap. getFrsFileData(String sessionId, String frsFileId)Gets FRS file data.StringFrsAppSoap. getFrsFileId(String sessionId, String frsFileId)Returns a temporary file storage object id to download an FRS file.FrsFileSoapListFrsAppSoap. getFrsFileList(String sessionId, String releaseId)Returns a list of files within a release.PackageSoapDOFrsAppSoap. getPackageData(String sessionId, String packageId)Returns package data.PackageSoapListFrsAppSoap. getPackageList(String sessionId, String projectId)Lists packages within a project.ReleaseSoapDOFrsAppSoap. getReleaseData(String sessionId, String releaseId)Returns the specified release data.ReleaseSoapListFrsAppSoap. getReleaseList(String sessionId, String packageId)Lists the releases within a specified package.voidFrsAppSoap. setPackageData(String sessionId, PackageSoapDO packageData)Returns package data.voidFrsAppSoap. setReleaseData(String sessionId, ReleaseSoapDO releaseData)Sets the specified release data. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.integrationdata
Methods in com.collabnet.ce.soap60.webservices.integrationdata that throw SystemFault Modifier and Type Method Description SoapNamedValuesIntegrationDataAppSoap. getData(String sessionId, String namespaceId, String objectId)Gets data for an object from the integration data serviceStringIntegrationDataAppSoap. getDataByKey(String sessionId, String namespaceId, String objectId, String key)Gets data for an object from the integration data serviceStringIntegrationDataAppSoap. getNamespaceId(String sessionId, String name)Gets the key to an existing namespace.voidIntegrationDataAppSoap. putData(String sessionId, String namespaceId, String objectId, SoapNamedValues namedValues)Adds or replaces a set of integration data values for the specified object.voidIntegrationDataAppSoap. putDataByKey(String sessionId, String namespaceId, String objectId, String key, String value)Adds or replaces a single integration data value for the specified object.StringIntegrationDataAppSoap. registerNamespace(String sessionId, String name)Registers a new namespacevoidIntegrationDataAppSoap. removeData(String sessionId, String namespaceId, String objectId, String[] keys)Removes a set of integration data values from the specified object.voidIntegrationDataAppSoap. removeDataByKey(String sessionId, String namespaceId, String objectId, String key)Removes a single integration data value from the specified object. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.monitoring
Methods in com.collabnet.ce.soap60.webservices.monitoring that throw SystemFault Modifier and Type Method Description intMonitoringAppSoap. getMonitoringNotificationPreference(String sessionId)Gets monitoring notification preference for current userMonitoringSubscriptionSoapDOMonitoringAppSoap. getMonitoringSubscription(String sessionId, String objectId)Gets the current user's subscription data on the specified object.MonitoringSubscriptionSoapListMonitoringAppSoap. getMonitoringSubscriptions(String sessionId, SoapFilter[] filters)Gets the list of current user's subscriptions optionally filtered by the specified filtersbooleanMonitoringAppSoap. isMonitoring(String sessionId, String objectId)Gets whether the specified object is being monitored by current user or not.booleanMonitoringAppSoap. isUserMonitoring(String sessionId, String userName, String objectId)Gets whether the specified object is being monitored by the given user name or not.MonitoringUserSoapListMonitoringAppSoap. listMonitoringUsers(String sessionId, String objectId)Gets the list of users monitoring the specified object.voidMonitoringAppSoap. setApplicationMonitoringNotificationPreferences(String sessionId, String projectId, SoapNamedValues appPreferences)Sets current user's application level monitoring notification preferences for the specified projectvoidMonitoringAppSoap. setMonitoringNotificationPreference(String sessionId, int preference)Sets monitoring notification preference for current user.voidMonitoringAppSoap. startMonitoring(String sessionId, String objectId)Starts monitoring the specified object for current uservoidMonitoringAppSoap. startMonitoringByUser(String sessionId, String userName, String objectId)Starts monitoring the specified object for the given uservoidMonitoringAppSoap. stopMonitoring(String sessionId, String objectId)Stops monitoring the specified object for current user.voidMonitoringAppSoap. stopMonitoringByUser(String sessionId, String userName, String objectId)Stops monitoring the specified object for the given user. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.news
Methods in com.collabnet.ce.soap60.webservices.news that throw SystemFault Modifier and Type Method Description NewsPostSoapDONewsAppSoap. createNewsPost(String sessionId, String projectId, String title, String body)Posts a news item to the project.voidNewsAppSoap. deleteNewsPost(String sessionId, String postId)Deletes a news post.voidNewsAppSoap. editNewsPost(String sessionId, String postId, String title, String body)Modifies a news post.NewsPostSoapListNewsAppSoap. findNews(String sessionId, String queryString, String projectId, boolean searchAttachments)Finds a list of news posts matching a search string.NewsPostSoapListNewsAppSoap. getAllNewsPostList(String sessionId)Returns news for all user projects.NewsPostSoapListNewsAppSoap. getNewsPostList(String sessionId, String projectId)Returns project news. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.page
Methods in com.collabnet.ce.soap60.webservices.page that throw SystemFault Modifier and Type Method Description StringPageAppSoap. addPageImage(String sessionId, String projectId, String fileId, String filename, String mimetype)Adds an uploaded file as an image for a page.PageComponentSoapDOPageAppSoap. createComponent(String sessionId, String pageId, String compName, String componentType, boolean topOfPage, int visibility, SoapNamedValues attributes, String content)Creates a page component.PageComponent2SoapDOPageAppSoap. createComponent2(String sessionId, String pageId, String compName, String componentType, boolean topOfPage, int visibility, SoapNamedValues attributes, String content)Creates a page component.PageSoapDOPageAppSoap. createPage(String sessionId, String projectId, String parentId, String title, boolean visible, boolean freeform)Creates a new project page.voidPageAppSoap. deletePage(String sessionId, String pageId)Deletes an existing pagevoidPageAppSoap. deletePageComponent(String sessionId, String pageComponentId)Deletes an existing page componentvoidPageAppSoap. deletePageImage(String sessionId, String projectId, String attachmentId)Deletes the specified attachment of the specified object.PageComponent2SoapDOPageAppSoap. getPageComponent(String sessionId, String pageComponentId)Gets page component meta data and settings for a given page component id.PageComponentSoapDO[]PageAppSoap. getPageComponents(String sessionId, String pageId)Gets an array of page components for a page (in the correct order)PageSoapDOPageAppSoap. getPageData(String sessionId, String pageId)Gets a project page.StringPageAppSoap. getPageImageUrl(String sessionId, String projectId, String attachmentId)Gets relative URL to access to the uploaded image from an HTML page.PageSoapListPageAppSoap. getPageList(String sessionId, String projectId)Gets all pages for a user in the specified project (in the correct order).StringPageAppSoap. getTextComponentContent(String sessionId, String pageCompId)Gets the content of a Text component.AttachmentSoapListPageAppSoap. listPageImages(String sessionId, String projectId)Lists the images for a project.voidPageAppSoap. movePage(String sessionId, String pageFolderPath, String destPath)Moves a page (including sub pages and contents).voidPageAppSoap. setComponentDisplayOrder(String sessionId, String pageId, String[] componentIds)Sets the display order for components within a pagevoidPageAppSoap. setLifecycleMetricComponentContent(String sessionId, PageComponent2SoapDO pageComponent, String content)Sets Lifecycle metric component.voidPageAppSoap. setPageComponentData(String sessionId, PageComponentSoapDO pageComponent)Updates a page componentvoidPageAppSoap. setPageData(String sessionId, PageSoapDO pageData)Edits an existing page.booleanPageAppSoap. setPageDisplayOrder(String sessionId, String folderId, String[] childrenPageIds)Sets the page display order.voidPageAppSoap. setTextComponentContent(String sessionId, String pageCompId, String content)Sets the content of a Text component. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.planning
Methods in com.collabnet.ce.soap60.webservices.planning that throw SystemFault Modifier and Type Method Description PlanningFolderSoapDOPlanningAppSoap. createPlanningFolder(String sessionId, String parentId, String title, String description, Date startDate, Date endDate, String status, int capacity, String releaseId)Deprecated.in favor of createPlanningFolder4PlanningFolder2SoapDOPlanningAppSoap. createPlanningFolder2(String sessionId, String parentId, String title, String description, Date startDate, Date endDate, String status, int capacity, String releaseId, String trackerUnitId)Deprecated.in favor of createPlanningFolder4PlanningFolder3SoapDOPlanningAppSoap. createPlanningFolder3(String sessionId, String parentId, String title, String description, Date startDate, Date endDate, String status, int capacity, int pointsCapacity, String releaseId, String trackerUnitId)Deprecated.in favor of createPlanningFolder4PlanningFolder4SoapDOPlanningAppSoap. createPlanningFolder4(String sessionId, String parentId, PlanningFolder4SoapDO soapDO)Deprecated.in favor of createPlanningFolder5PlanningFolder5SoapDOPlanningAppSoap. createPlanningFolder5(String sessionId, String parentId, String type, String title, String description, Date startDate, Date endDate, String status, int capacity, int pointsCapacity, String releaseId, String trackerUnitId, String burndownViewMode)Creates a new planning foldervoidPlanningAppSoap. deletePlanningFolder(String sessionId, String planningFolderId)Deletes a planning folder with the specified id.ArtifactsInPlanningFolderSoapListPlanningAppSoap. getArtifactListInPlanningFolder(String sessionId, String parentId, SoapFilter[] filters, boolean recursive)Deprecated.in favor of getArtifactListInPlanningFolder2ArtifactsInPlanningFolder2SoapListPlanningAppSoap. getArtifactListInPlanningFolder2(String sessionId, String parentId, SoapFilter[] filters, boolean recursive)Returns the list of artifacts contained in a planning folder or its descendants.ArtifactsInPlanningFolder2SoapListPlanningAppSoap. getArtifactListInPlanningFolder3(String sessionId, String parentId, SoapFilter[] filters, boolean recursive, String[] teamId)Returns the list of artifacts contained in a planning folder or its descendants.PlanningFolder2SoapDOPlanningAppSoap. getPlanningFolder2Data(String sessionId, String planningFolderId)Deprecated.in favor of getPlanningFolder4Data.PlanningFolder2SoapListPlanningAppSoap. getPlanningFolder2List(String sessionId, String parentId, boolean recursive)Deprecated.in favor of getPlanningFolder4ListPlanningFolder3SoapDOPlanningAppSoap. getPlanningFolder3Data(String sessionId, String planningFolderId)Deprecated.in favor of getPlanningFolder4Data.PlanningFolder3SoapListPlanningAppSoap. getPlanningFolder3List(String sessionId, String parentId, boolean recursive)Deprecated.in favor of getPlanningFolder4ListPlanningFolder4SoapDOPlanningAppSoap. getPlanningFolder4Data(String sessionId, String planningFolderId)Deprecated.in favor of getPlanningFolder5Data.PlanningFolder4SoapListPlanningAppSoap. getPlanningFolder4List(String sessionId, String parentId, boolean recursive)Returns the list of planning folders within the specified project.PlanningFolder5SoapDOPlanningAppSoap. getPlanningFolder5Data(String sessionId, String planningFolderId)Returns a data object for a given planning folderPlanningFolder5SoapListPlanningAppSoap. getPlanningFolder5List(String sessionId, String parentId, boolean recursive)Returns the list of planning folders within the specified project.PlanningFolderSoapDOPlanningAppSoap. getPlanningFolderData(String sessionId, String planningFolderId)Deprecated.in favor of getPlanningFolder4Data.PlanningFolderSoapListPlanningAppSoap. getPlanningFolderList(String sessionId, String parentId, boolean recursive)Deprecated.in favor of getPlanningFolder4ListPlanningFolderSummarySoapDOPlanningAppSoap. getPlanningFolderSummary(String sessionId, String planningFolderId)Deprecated.in favor of getPlanningFolderSummary4PlanningFolderSummary2SoapDOPlanningAppSoap. getPlanningFolderSummary2(String sessionId, String planningFolderId)Deprecated.in favor of getPlanningFolderSummary4PlanningFolderSummary2SoapListPlanningAppSoap. getPlanningFolderSummary2List(String sessionId, String parentId, boolean recursive)Deprecated.in favor of getPlanningFolderSummary4ListPlanningFolderSummary3SoapDOPlanningAppSoap. getPlanningFolderSummary3(String sessionId, String planningFolderId)Deprecated.in favor of getPlanningFolderSummary4PlanningFolderSummary3SoapListPlanningAppSoap. getPlanningFolderSummary3List(String sessionId, String parentId, boolean recursive)Deprecated.in favor of getPlanningFolderSummary4ListPlanningFolderSummary4SoapDOPlanningAppSoap. getPlanningFolderSummary4(String sessionId, String planningFolderId)Returns the statistics for the artifacts in a given planning folder and all its sub planning foldersPlanningFolderSummary4SoapListPlanningAppSoap. getPlanningFolderSummary4List(String sessionId, String parentId, boolean recursive)Returns the list of planning folders within the specified project including their statistics Planning folders having the same parent are correctly ordered.PlanningFolderSummary5SoapDOPlanningAppSoap. getPlanningFolderSummary5(String sessionId, String planningFolderId)Returns the statistics for the artifacts in a given planning folder and all its sub planning foldersPlanningFolderSummary5SoapListPlanningAppSoap. getPlanningFolderSummary5List(String sessionId, String parentId, boolean recursive)Returns the list of planning folders within the specified project including their statistics Planning folders having the same parent are correctly ordered.PlanningFolderSummarySoapListPlanningAppSoap. getPlanningFolderSummaryList(String sessionId, String parentId, boolean recursive)Deprecated.in favor of getPlanningFolderSummary4ListPlanningStatusValueSoapDO[]PlanningAppSoap. getPlanningStatusValues(String sessionId, String projectId)Gets status values for the planning application of a specific project.RankedArtifactSoapListPlanningAppSoap. getRankedArtifactList(String sessionId, String planningFolderId)Deprecated.in favor of getRankedArtifactList2RankedArtifact2SoapListPlanningAppSoap. getRankedArtifactList2(String sessionId, String planningFolderId)Returns the list of artifacts assigned to a planning folder or its descendants with the rank information in the specified planning folderPlanningFolderSoapDOPlanningAppSoap. movePlanningFolder(String sessionId, String planningFolderId, String destParentId)Deprecated.in favor of movePlanningFolder5PlanningFolder2SoapDOPlanningAppSoap. movePlanningFolder2(String sessionId, String planningFolderId, String destParentId)Deprecated.in favor of movePlanningFolder5PlanningFolder3SoapDOPlanningAppSoap. movePlanningFolder3(String sessionId, String planningFolderId, String destParentId)Deprecated.in favor of movePlanningFolder5PlanningFolder4SoapDOPlanningAppSoap. movePlanningFolder4(String sessionId, String planningFolderId, String destParentId)Deprecated.in favor of movePlanningFolder5PlanningFolder5SoapDOPlanningAppSoap. movePlanningFolder5(String sessionId, String planningFolderId, String destParentId)Moves a Planning Folder including its sub folders and contents.voidPlanningAppSoap. reorderPlanningFolders(String sessionId, String parentId, String[] planningFolderIds)Sets a new order for the planning folders in their parent folder.voidPlanningAppSoap. setPlanningFolder2Data(String sessionId, PlanningFolder2SoapDO planningFolderData)Deprecated.in favor of setPlanningFolder4DatavoidPlanningAppSoap. setPlanningFolder3Data(String sessionId, PlanningFolder3SoapDO planningFolderData)Deprecated.in favor of setPlanningFolder4DatavoidPlanningAppSoap. setPlanningFolder4Data(String sessionId, PlanningFolder4SoapDO planningFolderData)Deprecated.in favor of setPlanningFolder5DatavoidPlanningAppSoap. setPlanningFolder5Data(String sessionId, PlanningFolder5SoapDO planningFolderData)Sets data on a specific planning folder.voidPlanningAppSoap. setPlanningFolderData(String sessionId, PlanningFolderSoapDO planningFolderData)Deprecated.in favor of setPlanningFolder4DatavoidPlanningAppSoap. setPlanningStatusValues(String sessionId, String projectId, PlanningStatusValueSoapDO[] statusValues)Sets status values that is associated with the planning application of a specific project. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.pluggable
Methods in com.collabnet.ce.soap60.webservices.pluggable that throw SystemFault Modifier and Type Method Description PluggableComponent2SoapDOPluggableAppSoap. createIntegratedApplication3(String sessionId, String plugName, String description, String baseUrl, String goUrl, String prefix, String isScmRequired, String requireProjPrefix, String iconFileKey, String iconFileName, String iconMimeType, String endPoint, PluggableComponentParameterSoapDO[] paramDO, String adminUrl, PluggablePermissionSoapDO[] permSoapDO, String isPageComponentRequired, String pceInputType, String pceResultFormat, String pceDescription, String pceTitle, String idPattern, String serviceType)Deprecated.PluggableComponent3SoapDOPluggableAppSoap. createIntegratedApplication4(String sessionId, PluggableComponent3SoapDO soapDO, String iconFileKey, String iconFileName, String iconMimeType)Deprecated.PluggableComponent4SoapDOPluggableAppSoap. createIntegratedApplication5(String sessionId, PluggableComponent4SoapDO soapDO, String iconFileKey, String iconFileName, String iconMimeType)Deprecated.PluggableComponent5SoapDOPluggableAppSoap. createIntegratedApplication6(String sessionId, PluggableComponent5SoapDO soapDO, String iconFileKey, String iconFileName, String iconMimeType)Creates a Integrated Application Note that the icon file has to be uploaded seperately (through FileStorageApp or SimpleFileStorageApp service) and the maximum size of the icon file is 10KB.PluggableComponentSoapDOPluggableAppSoap. createIntegratedApplicationFromXMLFiles(String sessionId, byte[] depXmlByteArray, byte[] appXmlByteArray, String iconFileId)Deprecated.PluggableComponent2SoapDOPluggableAppSoap. createIntegratedApplicationFromXMLFiles2(String sessionId, byte[] depXmlByteArray, byte[] appXmlByteArray, String iconFileId)Deprecated.PluggableComponent2SoapDOPluggableAppSoap. createIntegratedApplicationFromXMLFiles3(String sessionId, byte[] depXmlByteArray, byte[] appXmlByteArray, String iconFileKey, String iconFileName, String iconMimeType)Deprecated.PluggableComponent3SoapDOPluggableAppSoap. createIntegratedApplicationFromXMLFiles4(String sessionId, byte[] depXmlByteArray, byte[] appXmlByteArray, String iconFileKey, String iconFileName, String iconMimeType)Deprecated.PluggableComponent4SoapDOPluggableAppSoap. createIntegratedApplicationFromXMLFiles5(String sessionId, byte[] depXmlByteArray, byte[] appXmlByteArray, String iconFileKey, String iconFileName, String iconMimeType)Deprecated.PluggableComponent5SoapDOPluggableAppSoap. createIntegratedApplicationFromXMLFiles6(String sessionId, byte[] depXmlByteArray, byte[] appXmlByteArray, String iconFileKey, String iconFileName, String iconMimeType)Create/import an integrated application from XML files.voidPluggableAppSoap. editIntegratedApplication(String sessionId, PluggableComponentSoapDO soapDO)Deprecated.voidPluggableAppSoap. editIntegratedApplication2(String sessionId, PluggableComponent2SoapDO soapDO)Deprecated.voidPluggableAppSoap. editIntegratedApplication3(String sessionId, PluggableComponent3SoapDO soapDO)Deprecated.voidPluggableAppSoap. editIntegratedApplication4(String sessionId, PluggableComponent4SoapDO soapDO)Deprecated.voidPluggableAppSoap. editIntegratedApplication5(String sessionId, PluggableComponent5SoapDO soapDO)Edit the integrated application properties.voidPluggableAppSoap. editIntegratedApplicationFromXMLFiles(String sessionId, String integratedAppId, byte[] depXmlByteArray, byte[] appXmlByteArray, String iconFileId)Edit integrated application from xml files.SoapNamedValuesPluggableAppSoap. editProjectConfigurationParameters(String sessionId, String projectId, PluggableComponentParameterSoapDO[] paramDO)Deprecated.SoapNamedValuesPluggableAppSoap. editProjectConfigurationParameters2(String sessionId, String integratedAppId, String projectId, PluggableComponentParameterSoapDO[] paramDO)Edit the project specific configuration parameters of an integrated application.SoapNamedValuesPluggableAppSoap. enablePluggableComponent(String sessionId, String projectID, String pluggableId, PluggableComponentParameterSoapDO[] params, String prefix)Adds a pluggable application to a projectStringPluggableAppSoap. getBaseUrlByLinkId(String sessionId, String linkId)Get the project integrated application's base URL.StringPluggableAppSoap. getLinkPlugId(String sessionId, String projectPath, String baseUrl)Gets the link id for the specified project and base URL.StringPluggableAppSoap. getLinkPlugIdByPlugId(String sessionId, String projectId, String pluggableId)Get the integrated application id for the specified project and base URL.PluggableComponentParameterSoapDO[]PluggableAppSoap. getProjectConfigParameterData(String sessionId, String linkId)Gets project specific configuration parameters for a pluggable application.StringPluggableAppSoap. getProjectPathByIntegratedAppId(String sessionId, String linkId)Get the project path for the given integrated application id.StringPluggableAppSoap. getProjectPrefix(String sessionId, String linkId)Get the project prefix for an integrated application.PluggableComponentSoapListPluggableAppSoap. listPluggableComponents(String sessionId)Deprecated.PluggableComponent2SoapListPluggableAppSoap. listPluggableComponents2(String sessionId)Gets the list of integrated applications in the site.PluggableComponent2SoapListPluggableAppSoap. listPluggableComponentsByCategory(String sessionId, String category)Gets the list of integrated applications in the site based on the category.LinkPluggableComponentSoapListPluggableAppSoap. listPluggableComponentsForProject(String sessionId, String projectId)Lists Pluggable Components.voidPluggableAppSoap. removeProjectIntegratedApplication(String sessionId, String linkId)Removes integrated application from a project.voidPluggableAppSoap. setIntegratedApplicationIcon(String sessionId, String integratedAppId, String iconFileKey, String iconFileName, String iconMimeType)Sets new icon for specified integrated application -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.rbac
Methods in com.collabnet.ce.soap60.webservices.rbac that throw SystemFault Modifier and Type Method Description voidRbacAppSoap. addCluster(String sessionId, String roleId, String operationCluster, String folderId)Adds an operation cluster to a role, expanding the permission set that the role grants access to.voidRbacAppSoap. addGroup(String sessionId, String groupId, String roleId, String projectOrProjectGroupId)Adds a user group to a role, within the Project/ProjectGroup scope.voidRbacAppSoap. addIntegratedApplicationPermission(String sessionId, String roleId, String integratedAppName, String permission)Adds an integrated application permission to a role, expanding the permission set that the role grants access to.voidRbacAppSoap. addUser(String sessionId, String roleId, String username)Adds a user to the role, giving them all of the permissions of that rolevoidRbacAppSoap. addUserToProjectRole(String sessionId, String roleId, String username, String projectOrProjectGroupId)Adds a user to the role in the given project context, giving them all of the permissions of that role in that projectvoidRbacAppSoap. approveRoleRequest(String sessionId, String requestId, String projectId)Approves a role requestRoleSoapDORbacAppSoap. createGlobalRole(String sessionId, String title, String description, boolean preventInheritance, boolean requestable)Creates a global role.RoleSoapDORbacAppSoap. createRole(String sessionId, String projectOrProjectGroupId, String title, String description, boolean preventInheritance, boolean requestable, boolean autoGrant)Creates a role in a given projectRoleSoapDORbacAppSoap. createSiteWideRole(String sessionId, String title, String description, boolean preventInheritance)Creates a site-wide role.voidRbacAppSoap. deleteRole(String sessionId, String roleId)Deletes a role.booleanRbacAppSoap. getAutomaticallyGrantOnRequest(String sessionId, String roleId, String projectId)Gets the role's Automatically Grant On Request for the given project.RoleSoapListRbacAppSoap. getGlobalRoleList(String sessionId)Returns a list of all the global roles available on the site.RoleSoapListRbacAppSoap. getGlobalRolesForAssignment(String sessionId, String projectOrProjectGroupId)Returns a list of global roles available in the project or project group for user/user group assignment.RoleSoapListRbacAppSoap. getGroupRoleList(String sessionId, String groupId, String projectIdOrProjectGroupId)Returns a list of roles the user group is associated with in a project or projectGroup.RoleSoapListRbacAppSoap. getInheritedRoleList(String sessionId, String projectId)Gets a list of roles inherited from any of the parent projects.IntegratedAppProjectPermissionSoapListRbacAppSoap. getIntegratedAppPermissions(String sessionId, String[] projectIds, String baseUrl)Returns list of integratedApp permissions for the user associated with specified projectsRoleRequestSoapListRbacAppSoap. getPendingRequestedRoles(String sessionId, String projectId)Lists the pending requested roles for the given projectIdUserSoapListRbacAppSoap. getProjectRoleMemberList(String sessionId, String roleId, String projectOrProjectGroupId)Returns a list of users that are in a specified role in the given project or project group.String[]RbacAppSoap. getProjectsByIntegratedAppPermission(String sessionId, String perm, String integratedAppName)Returns the list of projects by integratedApp permission.ProjectSoapListRbacAppSoap. getProjectsForAction(String sessionId, String operationString, String userName)Gets the list of all projects in which the given user has given permission.RoleSoapDORbacAppSoap. getRoleData(String sessionId, String roleId)Get a role data.UserGroupSoapListRbacAppSoap. getRoleGroupList(String sessionId, String roleId)Returns a list of user groups that belong to the specified role.UserSoapListRbacAppSoap. getRoleGroupUsers(String sessionId, String projectIdOrProjectGroupId, String roleId)Returns a list of users who are part of a group and associated with the specified role.RoleSoapListRbacAppSoap. getRoleList(String sessionId, String projectOrProjectGroupId)Gets a list of Roles in a project context.UserSoapListRbacAppSoap. getRoleMemberList(String sessionId, String roleId)Returns a list of users that are assigned to the specified role.RoleSoapListRbacAppSoap. getSiteWideRoleList(String sessionId)Returns a list of all the site-wide roles available on the site.RoleSoapListRbacAppSoap. getUserRoleList(String sessionId, String projectOrProjectGroupId, String username)Returns a list of roles that a user is a member of in the specified project or project group.RoleSoapListRbacAppSoap. getUserSiteWideRoleList(String sessionId, String username)Returns a list of roles that a user is a member of site wide role.voidRbacAppSoap. grantRolesToMembers(String sessionId, UserRolesSoapDO[] userRolesSoapDOs, String projectId)Grants roles to list of users in a given project and user is made as member of the project if not already.RoleCluster2SoapListRbacAppSoap. listClusterForDefaultAccessPermissions(String sessionId, String projectId)Gets the list of operation cluster with default access permission.RoleClusterSoapListRbacAppSoap. listClusters(String sessionId, String roleId)Gets the list of operation cluster assigned to a role.RoleGroupSoapListRbacAppSoap. listGroupRolesByProject(String sessionId, String projectId)Returns a list of user groups and the roles it is associated with in a project.RoleGroupSoapListRbacAppSoap. listGroupRolesByProjectGroup(String sessionId, String projectGroupId)Returns a list of user groups and the roles it is associated with in a project group.SoapNamedValuesRbacAppSoap. listRolePaths(String sessionId, String roleId, String repositoryId)Gets the list of paths for a role.voidRbacAppSoap. rejectRoleRequest(String sessionId, String requestId, String projectId)Rejects a role requestvoidRbacAppSoap. removeCluster(String sessionId, String roleId, String operationCluster, String folderId)Removes an operation cluster to a role, removing the permission set.voidRbacAppSoap. removeGroup(String sessionId, String groupId, String roleId, String projectOrProjectGroupId)Removes the user group for the role, within the Project/ProjectGroup scopevoidRbacAppSoap. removeIntegratedApplicationPermission(String sessionId, String roleId, String integratedAppName, String permission)Removes an integrated application permission from the given role.voidRbacAppSoap. removeUser(String sessionId, String roleId, String username)Removes a user from a role The behavior of this API is as follows.voidRbacAppSoap. removeUserFromProjectRole(String sessionId, String roleId, String username, String projectOrProjectGroupId)Removes a user from a role in the given project Same asremoveUserbut also takes projectOrProjectGroupId as an additional parameter.voidRbacAppSoap. requestRole(String sessionId, String roleId, String projectId)Requests a rolevoidRbacAppSoap. revokeRolesFromMembers(String sessionId, UserRolesSoapDO[] userRolesSoapDOs, String projectId)Removes roles from users in the projectvoidRbacAppSoap. setAutomaticallyGrantOnRequest(String sessionId, String roleId, String projectId, boolean autoGrant)Sets the role's Automatically Grant On Request for the given project.voidRbacAppSoap. setRoleData(String sessionId, RoleSoapDO roleData)Saves a role object.voidRbacAppSoap. setRolePaths(String sessionId, String roleId, String repositoryId, SoapNamedValues rolePaths)Sets the list of paths for a role. -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.scm
Methods in com.collabnet.ce.soap60.webservices.scm that throw SystemFault Modifier and Type Method Description StringScmAppSoap. addExternalSystem(String sessionId, String adapterType, String title, String description, SoapNamedValues adapterTypeParameters)Adds an external system of the given adapter type with its title, description and respective list of parameters.com.vasoftware.sf.server.services.scm.CheckoutCommand.CheckoutCommandSpecificationScmCheckoutCommandsBuilder. build()com.vasoftware.sf.server.services.scm.CheckoutCommand.CheckoutCommandSpecificationScmCheckoutCommandsForReplicaBuilder. build()RepositorySoapDOScmAppSoap. createRepository(String sessionId, String projectId, String externalSystemId, String repositoryDirectory, String title, String description, boolean idRequiredOnCommit, boolean hideMonitoringDetails, String comment)Creates a new repository in the given SCM server.Repository2SoapDOScmAppSoap. createRepository2(String sessionId, String projectId, String externalSystemId, String repositoryDirectory, String title, String description, boolean idRequiredOnCommit, boolean hideMonitoringDetails, String comment, RepositoryParameter2SoapDO[] params)Creates a new repository in the given SCM server.voidScmAppSoap. deleteRepository(String sessionId, String repositoryId)Delete the repository with specified ID.protected ScmCheckoutCommandsForReplicaBuilder.ReplicaCheckoutDataScmCheckoutCommandsForReplicaBuilder. getCheckoutData()CommitSoapDOScmAppSoap. getCommitData(String sessionId, String commitId)Deprecated.from 7.0.0.1 in favour of getCommitData2() that returns Commit2SoapDO, similar to CommitSoapDO except that the scmfile list does not contain the commit message for each file.Commit2SoapDOScmAppSoap. getCommitData2(String sessionId, String commitId)Returns data associated with a specific commit.StringScmAppSoap. getCommitId(String sessionId, String revision, String externalSystemId, String repoPath)Returns a commit Id corresponding to an commit version.CommitSoapListScmAppSoap. getCommitList(String sessionId, String repositoryId, SoapFilter[] filters)Lists the commits on a given repository.ExternalSystemSoapDOScmAppSoap. getExternalSystem(String sessionId, String systemId)Returns information associated with an external system integrated with TeamForge.ExternalSystemSoapListScmAppSoap. getExternalSystemList(String sessionId)Gets a list of external scm systems integrated with TeamForge.ExternalSystem2SoapListScmAppSoap. getExternalSystemList2(String sessionId)Gets a list of external scm systems integrated with TeamForge.ReplicableScmExternalSystemSoapListScmAppSoap. getReplicableScmExternalSystemList(String sessionId)Deprecated.since 8.1 as this call does not return replicable Git external systems.ReplicableScmExternalSystemSoapListScmAppSoap. getReplicableScmExternalSystemList2(String sessionId, String adapterName)Lists the replicable external systems for all adapter types or for a given adapter type.ReplicaDataSoapDOScmAppSoap. getReplicaData(String sessionId, String replicaId)For a given replica server id get the replica server data.ReplicatedRepositorySoapListScmAppSoap. getReplicatedRepositoryList(String sessionId, String masterRepositoryId)Lists replicated repositories of the specified SCM master.Repository2SoapDOScmAppSoap. getRepository2Data(String sessionId, String externalSystemId, String repositoryDirectory)Returns data associated with a specific repository.Repository2SoapDOScmAppSoap. getRepository2DataById(String sessionId, String repositoryId)Returns data associated with a specific repositoryRepositorySoapDOScmAppSoap. getRepositoryData(String sessionId, String externalSystemId, String repositoryDirectory)Returns data associated with a specific repository.RepositorySoapDOScmAppSoap. getRepositoryDataById(String sessionId, String repositoryId)Returns data associated with a specific repositoryRepositorySoapListScmAppSoap. getRepositoryList(String sessionId, String projectId)Lists the repositories within a given project that the current user has been granted view permission through roles and path based permission.RepositorySoapListScmAppSoap. getRepositoryListForExternalSystem(String sessionId, String externalSystemId, String userName)Lists the repositories on a given external system (SCM Adapter) for which the specified user has been granted view permission.String[]ScmAppSoap. getScmAdapterNames(String sessionId)Returns a string array containing the known list of supported SCM adapters on the server.SoapNamedValuesScmAppSoap. getScmAdapterParameterNamesWithType(String sessionId, String adapterName)Returns the SCM adapter parameter names with their corresponding type.StringScmAppSoap. getSCMCheckoutCommand(String sessionId, String repositoryId, String userName)Returns the command needed to check out a specific repository.CheckoutCommandSoapListScmAppSoap. getSCMCheckoutCommands(String sessionId, String repositoryId)Returns the list of commands that might be used to check out a specific repository.CheckoutCommandSoapListScmAppSoap. getSCMCheckoutCommandsForReplica(String sessionId, String repositoryId, String replicaId)Returns the list of commands that might be used to check out a repository's replica.RepositorySoapDOScmAppSoap. moveRepository(String sessionId, String repositoryId, String projectId)Moves the repository from its current project to the one specified.voidScmAppSoap. removeRepositoryFromReplica(String sessionId, String repositoryId, String replicaId)Remove process of replicating of a given repository on a given replica.voidScmAppSoap. replicateRepository(String sessionId, String repositoryId, String replicaId)Initiates the process of replicating of a given repository on a given replica.voidScmAppSoap. setAuthorizedKeys(String sessionId, String username, String authorizedKeys)Deprecated.from 7.2.0.0 in favour of setAuthorizedKeysForUser() which does the same.voidScmAppSoap. setExternalSystemData(String sessionId, ExternalSystemSoapDO systemData)Updates information associated with an external system integrated with TeamForge.voidScmAppSoap. setReplicaData(String sessionId, ReplicaDataSoapDO replica)Sets replica server data.voidScmAppSoap. setRepositoryData(String sessionId, Repository2SoapDO repository)Sets the repository data -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.tag
Methods in com.collabnet.ce.soap60.webservices.tag that throw SystemFault Modifier and Type Method Description TagSoapDOTagAppSoap. createTag(String sessionId, String projectId, String name, String description)Creates a tag in the specified projectvoidTagAppSoap. deleteTag(String sessionId, String tagId)Deletes a tagTagSoapListTagAppSoap. getObjectTags(String sessionId, String objectId)Gets object tagsTagSoapDOTagAppSoap. getTag(String sessionId, String tagId)Gets tag data for the specified tag idTagSoapDOTagAppSoap. getTagByName(String sessionId, String projectId, String tagName)Gets tag data by name in the specified projectTagSoapListTagAppSoap. listTags(String sessionId, String projectId)Gets the list of tags defined for the given projectTagSoapListTagAppSoap. setObjectTags(String sessionId, String objectId, String[] tagIds)Sets object tagsTagSoapDOTagAppSoap. updateTag(String sessionId, String tagId, String name, String description)Updates a tag's name and description -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.team
Methods in com.collabnet.ce.soap60.webservices.team that throw SystemFault Modifier and Type Method Description TeamSoapDOTeamAppSoap. createTeam(String sessionId, String projectId, String title, String description, String parentTeamId, String teamOwnerUserName, String[] memberUserNames)Creates a new teamvoidTeamAppSoap. deleteTeam(String sessionId, String teamId)Delete the team if team has no childTeamSoapListTeamAppSoap. getChildTeamList(String sessionId, String parentTeamId)Get list of child teams specific to parent teamTeamSoapDOTeamAppSoap. getTeamData(String sessionId, String teamId)Get the team data for a team id.TeamSoapListTeamAppSoap. getTeamListForProject(String sessionId, String projectId)Get list of teams specific to projectUserSoapListTeamAppSoap. getTeamMemberList(String sessionId, String teamId)Get list of team members specific to teamvoidTeamAppSoap. setTeamData(String sessionId, String teamId, String title, String description, String teamOwnerUserName, String[] memberUserNames, int version)Update team data for given team Id -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.tracker
Methods in com.collabnet.ce.soap60.webservices.tracker that throw SystemFault Modifier and Type Method Description voidTrackerAppSoap. addDateField(String sessionId, String trackerId, String fieldName, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String helpText)Adds a custom Date field to a tracker.voidTrackerAppSoap. addMultiSelectField(String sessionId, String trackerId, String fieldName, int displayLines, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String[] fieldValues, String[] defaultValues, String helpText)Adds a custom multi select field to a tracker.voidTrackerAppSoap. addSeparator(String sessionId, String trackerId, String separatorType, String separatorLabel)Adds a separator to a tracker.voidTrackerAppSoap. addSingleSelectChildField(String sessionId, String trackerId, String fieldName, String[] fieldValues, String parentFieldId, SoapNamedValues parentChildFieldValueMap, String helpText)Adds a custom single select field to a tracker.voidTrackerAppSoap. addSingleSelectField(String sessionId, String trackerId, String fieldName, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String[] fieldValues, String defaultValue, String helpText)Adds a custom single select field to a tracker.voidTrackerAppSoap. addTextField(String sessionId, String trackerId, String fieldName, int displayColumns, int displayLines, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String defaultValue, String helpText, String pattern)Adds a custom text field to a tracker.voidTrackerAppSoap. addUserSelectField(String sessionId, String trackerId, String fieldName, int displayLines, boolean isRequired, boolean isDisabled, boolean isHiddenOnCreate, String[] defaultValues, String userFilter, String helpText)Adds a custom User selection field to a tracker.Tracker2SoapDOTrackerAppSoap. cloneTracker(String sessionId, String srcTrackerId, String destTrackerTitle, String destTrackerDescription)Clone Tracker within the same projectTracker2SoapDOTrackerAppSoap. cloneTrackerAcrossProject(String sessionId, String srcTrackerId, String destProjectId, String destTrackerTitle, String destTrackerDescription)Clone Tracker across the projectvoidTrackerAppSoap. copyWorkflowTransitions(String sessionId, String srcTrackerId, String dstTrackerId)Copies workflow transitions between two trackers.ArtifactSoapDOTrackerAppSoap. createArtifact(String sessionId, String trackerId, String title, String description, String group, String category, String status, String customer, int priority, int estimatedEffort, int remainingEffort, boolean autosumming, int points, String assignedUsername, String releaseId, String planningFolderId, SoapFieldValues flexFields, String attachmentFileName, String attachmentMimeType, String attachmentFileId)Deprecated.in favor of createArtifact4ArtifactSoapDOTrackerAppSoap. createArtifact2(String sessionId, String trackerId, String title, String description, String group, String category, String status, String customer, int priority, int estimatedEffort, int remainingEffort, boolean autosumming, int points, String assignedUsername, String releaseId, String planningFolderId, SoapFieldValues flexFields, AttachmentSoapDO[] attachments)Deprecated.in favor of createArtifact4Artifact2SoapDOTrackerAppSoap. createArtifact3(String sessionId, String trackerId, String title, String description, String group, String category, String status, String customer, int priority, int estimatedEffort, int remainingEffort, boolean autosumming, int points, boolean autoSummingPoints, String assignedUsername, String releaseId, String planningFolderId, String teamId, SoapFieldValues flexFields, AttachmentSoapDO[] attachments)Deprecated.in favor of createArtifact4Artifact3SoapDOTrackerAppSoap. createArtifact4(String sessionId, String trackerId, String title, String description, String group, String category, String status, String customer, int priority, int estimatedEffort, int remainingEffort, boolean autosumming, int points, boolean autoSummingPoints, String assignedUsername, String releaseId, String planningFolderId, String teamId, SoapFieldValues flexFields, AttachmentSoapDO[] attachments, String[] tagNames)Creates a new artifact with multiple attachments, flag to enable the autosumming_points and tags.voidTrackerAppSoap. createArtifactDependency(String sessionId, String originId, String targetId, String desc)Creates an artifact dependency between two artifacts.TrackerSoapDOTrackerAppSoap. createTracker(String sessionId, String projectId, String trackerName, String trackerTitle, String trackerDescription, String icon)Deprecated.use createTracker3 instead, which includes tracker unit and autosum foreign children supportTracker2SoapDOTrackerAppSoap. createTracker2(String sessionId, String projectId, String trackerName, String trackerTitle, String trackerDescription, String icon, String trackerUnitId)Deprecated.use createTracker3 instead, which includes foreign children supportTracker3SoapDOTrackerAppSoap. createTracker3(String sessionId, String projectId, String trackerName, String trackerTitle, String trackerDescription, String icon, String trackerUnitId, boolean autosumForeignChildren)Creates a new tracker with autosum foreign children supportvoidTrackerAppSoap. deleteArtifact(String sessionId, String artifactId)Deletes an artifact.voidTrackerAppSoap. deleteField(String sessionId, String objectId, String fieldId)Deletes a custom/flex-field .voidTrackerAppSoap. deleteSeparator(String sessionId, String trackerId, String layoutId)Deletes a separator of a tracker layout.ArtifactSoapListTrackerAppSoap. findArtifacts(String sessionId, String queryString, String projectId, boolean searchAttachments)Deprecated.in favor of findArtifacts2Artifact2SoapListTrackerAppSoap. findArtifacts2(String sessionId, String queryString, String projectId, boolean searchAttachments)Finds a list of artifacts matching a search string.WorkflowTransitionSoapListTrackerAppSoap. getAllowedWorkflowTransitionList(String sessionId, String trackerId)Deprecated.in favor of getAllowedWorkflowTransitionList2WorkflowTransition2SoapListTrackerAppSoap. getAllowedWorkflowTransitionList2(String sessionId, String trackerId)Deprecated.in favor of getAllowedWorkflowTransitionList3WorkflowTransition3SoapListTrackerAppSoap. getAllowedWorkflowTransitionList3(String sessionId, String trackerId)Gets workflow transitions for the tracker.ArtifactSoapDOTrackerAppSoap. getArtifactData(String sessionId, String artifactId)Deprecated.in favor of getArtifactData3Artifact2SoapDOTrackerAppSoap. getArtifactData2(String sessionId, String artifactId)Deprecated.in favor of getArtifactData3Artifact3SoapDOTrackerAppSoap. getArtifactData3(String sessionId, String artifactId)Returns data associated with the specified artifact.ArtifactDetailSoapListTrackerAppSoap. getArtifactDetailList(String sessionId, String trackerId, String[] selectedColumns, SoapFilter[] filters, SoapSortKey[] sortKeys, int startIndex, int maxRows, boolean exceptionIfExpiredCache, boolean forceNewQuery)Deprecated.in favor of getArtifactDetailList2ArtifactDetail2SoapListTrackerAppSoap. getArtifactDetailList2(String sessionId, String trackerId, String[] selectedColumns, SoapFilter[] filters, SoapSortKey[] sortKeys, int startIndex, int maxRows, boolean exceptionIfExpiredCache, boolean forceNewQuery)Returns a filtered and ordered list of artifacts from the specified tracker.ArtifactSoapListTrackerAppSoap. getArtifactList(String sessionId, String containerId, SoapFilter[] filters)Deprecated.in fovor of getArtifactList2Artifact2SoapListTrackerAppSoap. getArtifactList2(String sessionId, String containerId, SoapFilter[] filters)Returns a filtered list of artifacts within the specified container (project or tracker).ArtifactDependencySoapListTrackerAppSoap. getChildDependencyList(String sessionId, String artifactId)Gets the dependency list for an artifact where the artifact is the origin artifact.ArtifactDetailSoapListTrackerAppSoap. getCrossTrackerArtifactList(String sessionId, String containerId, SoapFilter[] filters, String[] selectedColumns)Deprecated.in favor of getCrossTrackerArtifactList2ArtifactDetail2SoapListTrackerAppSoap. getCrossTrackerArtifactList2(String sessionId, String containerId, SoapFilter[] filters, String[] selectedColumns)Returns a filtered list of artifacts within the specified container (project or tracker).TrackerFieldSoapDO[]TrackerAppSoap. getFields(String sessionId, String trackerId)Deprecated.use getFields2 insteadTrackerField2SoapDO[]TrackerAppSoap. getFields2(String sessionId, String trackerId)Returns the custom/flex-fields associated with a specific tracker.OrderedTrackerFieldSoapListTrackerAppSoap. getOrderedTrackerFields(String sessionId, String trackerId)Returns all fields and separators in the given tracker with layout information.ArtifactDependencySoapListTrackerAppSoap. getParentDependencyList(String sessionId, String artifactId)Gets the dependency list for an artifact where the artifact is the target artifact.Tracker2SoapDOTrackerAppSoap. getTracker2Data(String sessionId, String trackerId)Deprecated.use getTracker3Data instead, which includes autosum foreign children supportTracker2SoapListTrackerAppSoap. getTracker2List(String sessionId, String projectId)Deprecated.use getTracker3List instead, which includes autosum foreign children supportTracker3SoapDOTrackerAppSoap. getTracker3Data(String sessionId, String trackerId)Returns a data object for a given trackerTracker3SoapListTrackerAppSoap. getTracker3List(String sessionId, String projectId)Returns a list of trackers for a project in the order that they are displayed in the UI.TrackerSoapDOTrackerAppSoap. getTrackerData(String sessionId, String trackerId)Deprecated.use getTracker3Data instead, which includes tracker unit and autosum foreign children supportTrackerSoapListTrackerAppSoap. getTrackerList(String sessionId, String projectId)Deprecated.use getTracker3List instead, which includes tracker unit and autosum foreign children supportTrackerUnitSoapListTrackerAppSoap. getUnitsByProject(String sessionId, String projectId)Gets the units for a given project.ArtifactSoapDOTrackerAppSoap. moveArtifact(String sessionId, String artifactId, String targetFolderId, String newAssignee)Deprecated.in favor of moveArtifact2Artifact2SoapDOTrackerAppSoap. moveArtifact2(String sessionId, String artifactId, String targetFolderId, String newAssignee)Moves an artifact to a specified target folder.voidTrackerAppSoap. removeArtifactDependency(String sessionId, String originId, String targetId)Removes an artifact dependency between two artifacts.voidTrackerAppSoap. reorderTrackerFields(String sessionId, String trackerId, String[] layoutIds)Sets a new order of the fields and the separators within a tracker.voidTrackerAppSoap. reorderTrackers(String sessionId, String[] trackerIds)Sets a new order of the trackers within a project.voidTrackerAppSoap. setArtifactData(String sessionId, ArtifactSoapDO artifactData, String comment, String attachmentFileName, String attachmentMimeType, String attachmentFileId)Deprecated.in favor of setArtifactData4voidTrackerAppSoap. setArtifactData2(String sessionId, ArtifactSoapDO artifactData, String comment, AttachmentSoapDO[] attachments)Deprecated.in favor of setArtifactData4voidTrackerAppSoap. setArtifactData3(String sessionId, Artifact2SoapDO artifactData, String comment, AttachmentSoapDO[] attachments)Deprecated.in favor of setArtifactData4voidTrackerAppSoap. setArtifactData4(String sessionId, Artifact3SoapDO artifactData, String comment, AttachmentSoapDO[] attachments)Sets data associated along with multiple attachments with the specified artifact.voidTrackerAppSoap. setArtifactRank(String sessionId, String planningFolderId, String artfToRankId, String artfBeforeId, String artfAfterId)Sets the rank of an artifact relative to one or more other artifacts, in the context of a specific planning folder.voidTrackerAppSoap. setField(String sessionId, String objectId, TrackerFieldSoapDO fieldData)Deprecated.use setField2 insteadvoidTrackerAppSoap. setField2(String sessionId, String objectId, TrackerField2SoapDO fieldData)Sets a custom/flex-field that is associated with a specific folder (e.g.voidTrackerAppSoap. setTracker2Data(String sessionId, Tracker2SoapDO trackerData)Deprecated.use setTracker3Data instead, which includes autosum foreign children supportvoidTrackerAppSoap. setTracker3Data(String sessionId, Tracker3SoapDO trackerData)Sets data on a specific tracker with autosum foreign children supportvoidTrackerAppSoap. setTrackerData(String sessionId, TrackerSoapDO trackerData)Deprecated.use setTracker3Data instead, which includes tracker unit and autosum foreign children support -
Uses of SystemFault in com.collabnet.ce.soap60.webservices.wiki
Methods in com.collabnet.ce.soap60.webservices.wiki that throw SystemFault Modifier and Type Method Description voidWikiAppSoap. addAttachment(String sessionId, String wikiPageId, String fileId, String filename, String mimetype)Attaches the uploaded file to the specified wiki page.voidWikiAppSoap. addAttachments(String sessionId, String wikiPageId, AttachmentSoapDO[] attachments)Attaches the uploaded file to the specified wiki page.WikiPageSoapDOWikiAppSoap. createWikiPage(String sessionId, String projectId, String name, String wikiText, String versionComment)Creates a new wiki page with the specified name, text, etc.voidWikiAppSoap. deleteWikiPage(String sessionId, String wikiPageId)Deletes a wiki page.StringWikiAppSoap. getFormattedWikiPageText(String sessionId, String wikiPageId)Gets specified wiki page text in formatted (HTML) form.WikiPageSoapDOWikiAppSoap. getWikiPageData(String sessionId, String wikiPageId)Gets specified wiki page data.WikiPageSoapDOWikiAppSoap. getWikiPageDataByName(String sessionId, String projectId, String wikiPageName)Gets specified wiki page text in formatted (HTML) form.WikiPageSoapListWikiAppSoap. getWikiPageList(String sessionId, String projectId)Lists all wiki pages that have contents within a project.voidWikiAppSoap. setWikiPageData(String sessionId, WikiPageSoapDO wikiPageData)Sets specified wiki page data.
-