Uses of Class
com.collabnet.ce.soap60.fault.IllegalArgumentFault
-
-
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices
Methods in com.collabnet.ce.soap60.webservices that throw IllegalArgumentFault Modifier and Type Method Description protected LocaleWebService. getLocale(String locale)Returns locale object from string specification.protected voidWebService. validateChoice(String name, int[] choices, int value)Validates integer value to be one of the possible choices.protected voidWebService. validateChoice(String name, String[] choices, String value)Validates string to be one of the possible choices.protected voidWebService. validateIconFile(String iconFileName, String iconMimeType)Validates the icon fileName and mime type.protected voidWebService. validateString(String name, String value)Validates string to be non-null and non-empty.protected voidWebService. validateStringArray(String name, String[] values)Validates values in the string array to be non-null and non-empty.protected voidWebService. validateStringWithTrim(String name, String value)Validates string to be non-null and non-empty with ignoring white spaces at starting and ending of the stringprotected voidWebService. validateWikiPageName(String name, String value)Validates wiki page name to be conformant. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.categorization
Methods in com.collabnet.ce.soap60.webservices.categorization that throw IllegalArgumentFault Modifier and Type Method Description voidCategorizationAppSoap. setCategoryData(String sessionId, CategorySoapDO categoryData)Sets data on a specific category -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.cemain
Methods in com.collabnet.ce.soap60.webservices.cemain that throw IllegalArgumentFault Modifier and Type Method Description voidCollabNetSoap. addProjectsToProjectGroup(String sessionId, String projectGroupId, String[] projectIds)Adds the given projects to a project group.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. deleteLinkedApp(String sessionId, String linkedAppId)Delete the linked application.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.AuditHistorySoapListCollabNetSoap. getAuditHistoryList(String sessionId, String objectId, boolean includeDerivedChanges)Returns the list of changes made to the specified object in reverse chronological order.LinkedApplicationSoapDOCollabNetSoap. 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 IdUserSoapDOCollabNetSoap. 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.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.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.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.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.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. setUserGroupData(String sessionId, UserGroupSoapDO groupData)Sets the user group information. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.discussion
Methods in com.collabnet.ce.soap60.webservices.discussion that throw IllegalArgumentFault 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.PostSoapListDiscussionAppSoap. findPosts(String sessionId, String queryString, String projectId, boolean searchAttachments)Finds a list of posts matching a search string. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.docman
Methods in com.collabnet.ce.soap60.webservices.docman that throw IllegalArgumentFault 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. 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. deleteSeparator(String sessionId, String layoutId)Deletes a separator of a document root folder layout.Document3SoapListDocumentAppSoap. findDocuments3(String sessionId, String queryString, String projectId, boolean searchAttachments, boolean currentVersionsOnly)Finds a list of documents matching a search string.DocumentFolderSoapDODocumentAppSoap. getDocumentFolderData(String sessionId, String folderId)Gets detailed data on a document folderDocument3SoapDODocumentAppSoap. moveDocument3(String sessionId, String documentId, String targetFolderId)Moves a document to a specified target folder.voidDocumentAppSoap. 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. setField(String sessionId, DocumentFolderFieldSoapDO fieldData)Sets a custom/flex-field. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.filestorage
Methods in com.collabnet.ce.soap60.webservices.filestorage that throw IllegalArgumentFault Modifier and Type Method Description javax.activation.DataHandlerFileStorageAppSoap. downloadFile(String sessionId, String fileStorageId)Downloads file 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.voidSimpleFileStorageAppSoap. write(String sessionId, String fileStorageId, byte[] data)Appends data to the file being uploaded. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.frs
Methods in com.collabnet.ce.soap60.webservices.frs that throw IllegalArgumentFault 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.FrsFileSoapDOFrsAppSoap. getFrsFileData(String sessionId, String frsFileId)Gets FRS file data.voidFrsAppSoap. setPackageData(String sessionId, PackageSoapDO packageData)Returns package data.voidFrsAppSoap. setReleaseData(String sessionId, ReleaseSoapDO releaseData)Sets the specified release data. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.monitoring
Methods in com.collabnet.ce.soap60.webservices.monitoring that throw IllegalArgumentFault Modifier and Type Method Description booleanMonitoringAppSoap. isUserMonitoring(String sessionId, String userName, String objectId)Gets whether the specified object is being monitored by the given user name or not.voidMonitoringAppSoap. setApplicationMonitoringNotificationPreferences(String sessionId, String projectId, SoapNamedValues appPreferences)Sets current user's application level monitoring notification preferences for the specified projectvoidMonitoringAppSoap. startMonitoringByUser(String sessionId, String userName, String objectId)Starts monitoring the specified object for the given uservoidMonitoringAppSoap. stopMonitoringByUser(String sessionId, String userName, String objectId)Stops monitoring the specified object for the given user. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.news
Methods in com.collabnet.ce.soap60.webservices.news that throw IllegalArgumentFault Modifier and Type Method Description NewsPostSoapDONewsAppSoap. createNewsPost(String sessionId, String projectId, String title, String body)Posts a news item to the project.voidNewsAppSoap. editNewsPost(String sessionId, String postId, String title, String body)Modifies a news post. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.page
Methods in com.collabnet.ce.soap60.webservices.page that throw IllegalArgumentFault Modifier and Type Method Description 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.voidPageAppSoap. setLifecycleMetricComponentContent(String sessionId, PageComponent2SoapDO pageComponent, String content)Sets Lifecycle metric component.voidPageAppSoap. setPageComponentData(String sessionId, PageComponentSoapDO pageComponent)Updates a page componentvoidPageAppSoap. setTextComponentContent(String sessionId, String pageCompId, String content)Sets the content of a Text component. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.planning
Methods in com.collabnet.ce.soap60.webservices.planning that throw IllegalArgumentFault 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 getPlanningFolderSummary4ListRankedArtifactSoapListPlanningAppSoap. 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 IllegalArgumentFault in com.collabnet.ce.soap60.webservices.pluggable
Methods in com.collabnet.ce.soap60.webservices.pluggable that throw IllegalArgumentFault Modifier and Type Method Description PluggableComponentSoapDOPluggableAppSoap. createIntegratedApplication(String sessionId, String plugName, String description, String baseUrl, String goUrl, String prefix, String isScmRequired, String requireProjPrefix, String iconFileId, String endPoint, PluggableComponentParameterSoapDO[] paramDO, String adminUrl, PluggablePermissionSoapDO[] permSoapDO, String pceInputType, String pceResultFormat, String pceDescription, String pceTitle)Deprecated.PluggableComponent2SoapDOPluggableAppSoap. createIntegratedApplication2(String sessionId, String plugName, String description, String baseUrl, String goUrl, String prefix, String isScmRequired, String requireProjPrefix, String iconFileId, String endPoint, PluggableComponentParameterSoapDO[] paramDO, String adminUrl, PluggablePermissionSoapDO[] permSoapDO, String isPageComponentRequired, String pceInputType, String pceResultFormat, String pceDescription, String pceTitle, String idPattern, String serviceType)Deprecated.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.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.voidPluggableAppSoap. setIntegratedApplicationIcon(String sessionId, String integratedAppId, String iconFileKey, String iconFileName, String iconMimeType)Sets new icon for specified integrated applicationvoidPluggableAppSoap. updateRecentAccess(String userId, String objectId)Updates the recent access entries for the user. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.rbac
Methods in com.collabnet.ce.soap60.webservices.rbac that throw IllegalArgumentFault 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.booleanRbacAppSoap. getAutomaticallyGrantOnRequest(String sessionId, String roleId, String projectId)Gets the role's Automatically Grant On Request for the given project.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. 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 IllegalArgumentFault in com.collabnet.ce.soap60.webservices.scm
Methods in com.collabnet.ce.soap60.webservices.scm that throw IllegalArgumentFault Modifier and Type Method Description ReplicaServerSoapListScmAppSoap. getReplicaListForExternalSystem(String sessionId, String externalSystemId, boolean approvedOnly)Returns list of replicas for given external system id.ReplicaRepositorySoapListScmAppSoap. getReplicaRepositoryList(String sessionId, String replicaId)Lists repositories of the specified replica.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.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. -
Uses of IllegalArgumentFault in com.collabnet.ce.soap60.webservices.tag
Methods in com.collabnet.ce.soap60.webservices.tag that throw IllegalArgumentFault Modifier and Type Method Description static Set<String>TagSoapUtil. convertTagNamesToIds(String sessionId, String projectId, String[] tagNames)Converts the tag names in the given project to tag IdsTagSoapDOTagAppSoap. createTag(String sessionId, String projectId, String name, String description)Creates a tag in the specified 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 IllegalArgumentFault in com.collabnet.ce.soap60.webservices.team
Methods in com.collabnet.ce.soap60.webservices.team that throw IllegalArgumentFault 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 IllegalArgumentFault in com.collabnet.ce.soap60.webservices.tracker
Methods in com.collabnet.ce.soap60.webservices.tracker that throw IllegalArgumentFault 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.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.Tracker3SoapDOTrackerAppSoap. 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. 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.TrackerUnitSoapListTrackerAppSoap. 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. 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 IllegalArgumentFault in com.collabnet.ce.soap60.webservices.wiki
Methods in com.collabnet.ce.soap60.webservices.wiki that throw IllegalArgumentFault Modifier and Type Method Description WikiPageSoapDOWikiAppSoap. createWikiPage(String sessionId, String projectId, String name, String wikiText, String versionComment)Creates a new wiki page with the specified name, text, etc.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.
-