Java Code for creating PLAN in RTC?
2 answers
this is derived from Guido's code in https://jazz.net/forum/questions/82381/how-do-i-create-a-plan-with-the-java-api
private static void createPlan(IAuditableClient destauditableClient,
IProjectArea project, String planName,
IIterationHandle planIteration, String planType,
IItemHandle planTeam, String planinfo, IContributor creator)
{
// get classes for plan creation
IAuditableCommon audit = (IAuditableCommon) destauditableClient.getTeamRepository().getClientLibrary(IAuditableCommon.class);
IIterationPlanService planService = (IIterationPlanService) ((IClientLibraryContext) destauditableClient.getTeamRepository()).getServiceInterface(IIterationPlanService.class);
// create necessary plan items
IIterationPlanRecord plan = (IIterationPlanRecord) IIterationPlanRecord.ITEM_TYPE.createItem();
IWikiPage wiki = (IWikiPage) IWikiPage.ITEM_TYPE.createItem();
// setup plan values
plan.setName(planName);
plan.setIteration(planIteration);
plan.setPlanType(planType);
plan.setOwner((IProcessAreaHandle) planTeam);
// setup wiki page
wiki.setName("entry " + planName);
wiki.setWikiID(IIterationPlanRecord.OVERVIEW_PAGE_ID);
wiki.setCreator(creator);
wiki.setOwner(plan);
String encoding = "UTF8";
String xmlText = "<p>test</p>";
byte[] bytes;
try
{
InputStream inputStream = null;
if (planinfo != null)
{
bytes = planinfo.getBytes(encoding);
inputStream = new ByteArrayInputStream(bytes);
plan.setAuxiliaryData(audit.storeContent(IContent.CONTENT_TYPE_TEXT, encoding, inputStream, bytes.length, null));
}
bytes = xmlText.getBytes(encoding);
inputStream = new ByteArrayInputStream(bytes);
wiki.setContent(audit.storeContent(IContent.CONTENT_TYPE_TEXT, encoding, inputStream, bytes.length, null));
// save plan
DTO_IterationPlanSaveResult saveResult = planService.save(project, plan, wiki);
if (saveResult.isSetIterationPlanRecord() == false)
{
System.out.println("Saving failed!");
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
Comments
you have to download the SDK pakage and use the apt jar files from there as well. the apt jars contain the planning apis. which are not published.
you didn't say what release, so I picked 4.0.7, here is the download page,
https://jazz.net/downloads/rational-team-concert/releases/4.0.7?p=allDownloads
select the 'Source Code', download, unzip, and in the plugins folder you will find the jars for the planning apis.
this list is from my 4.0.1 sdk download
Directory of J:\temp\rtc 4.0.1 gm\RTC-SDK\plugins
11/14/2012 01:44 AM 123,213 com.ibm.team.apt.api.common_3.0.300.v20121022_1010.jar
11/14/2012 01:44 AM 25,985 com.ibm.team.apt.api.ui_3.0.300.v20121022_1010.jar
11/14/2012 01:40 AM 52,087 com.ibm.team.apt.api.client_3.0.300.v20121022_1010.jar