How to create a new Work Item
![]()
Hi, I want to create a new Work Item ,but I can not find the java service.Now I can modify and save an existed Work Item like this:
//modify work item name and owner import com.ibm.team.workitem.service.IWorkItemServer; import com.ibm.team.foundation.common.text.XMLString; import com.ibm.team.process.common.IProjectArea; import com.ibm.team.repository.common.IContributor; import com.ibm.team.repository.common.IContributorHandle; import com.ibm.team.repository.common.IItemHandle; import com.ibm.team.repository.common.TeamRepositoryException; import com.ibm.team.repository.service.TeamRawService; import com.ibm.team.workitem.common.model.IWorkItem; //wI is an existed work item which need modify name and owner IWorkItem workCopy = (IWorkItem) wI.getWorkingCopy(); XMLString x = XMLString.createFromPlainText("newName"); workCopy.setHTMLSummary(x); workCopy.setOwner((IContributorHandle) contributor.getItemHandle()); IWorkItemServer wIServer = getService(IWorkItemServer.class); wIServer.saveWorkItem2(workCopy, null, null); Now, I wand to know how to create a new work item,thank you. |