• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java RepositoryResponse类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.eclipse.mylyn.tasks.core.RepositoryResponse的典型用法代码示例。如果您正苦于以下问题:Java RepositoryResponse类的具体用法?Java RepositoryResponse怎么用?Java RepositoryResponse使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



RepositoryResponse类属于org.eclipse.mylyn.tasks.core包,在下文中一共展示了RepositoryResponse类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: updateTaskData

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
private void updateTaskData(TaskData data, BugzillaRepositoryConnector brc, TaskRepository repository) throws CoreException {
      data = brc.getTaskData(repository, data.getTaskId(), nullProgressMonitor);
TaskAttribute attrModification1 = data.getRoot().getMappedAttribute(TaskAttribute.DATE_MODIFICATION);

      TaskAttribute rta = data.getRoot();
      TaskAttribute ta = rta.getMappedAttribute(TaskAttribute.USER_ASSIGNED);
      ta = rta.getMappedAttribute(TaskAttribute.SUMMARY);
      String val = ta.getValue();
      ta.setValue(val + " updated");
      Set<TaskAttribute> attrs = new HashSet<TaskAttribute>();
      attrs.add(ta);
      RepositoryResponse rr = brc.getTaskDataHandler().postTaskData(repository, data, attrs, new NullProgressMonitor());
      assertEquals(rr.getReposonseKind(), RepositoryResponse.ResponseKind.TASK_UPDATED);

      data = brc.getTaskData(repository, data.getTaskId(), nullProgressMonitor);
      rta = data.getRoot();
      ta = rta.getMappedAttribute(TaskAttribute.SUMMARY);
      assertEquals(val + " updated", ta.getValue());

      TaskAttribute attrModification2 = data.getRoot().getMappedAttribute(TaskAttribute.DATE_MODIFICATION);
      assertNotSame(attrModification1, attrModification2);

  }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:24,代码来源:BugzillaTest.java


示例2: closeIssue

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
private void closeIssue(TaskData data, BugzillaRepositoryConnector brc, TaskRepository repository) throws Exception {
    //RepositoryConfiguration rc = brc.getClientManager().getClient(repository, nullProgressMonitor).getRepositoryConfiguration();

    // refresh
    data = brc.getTaskData(repository, data.getTaskId(), nullProgressMonitor);

    Set<TaskAttribute> attrs = new HashSet<TaskAttribute>();
    TaskAttribute rta = data.getRoot();

    TaskAttribute ta = rta.getMappedAttribute(TaskAttribute.OPERATION);
    ta.setValue("resolve");
    attrs.add(ta);

    ta = rta.getMappedAttribute(TaskAttribute.STATUS);
    ta.setValue("FIXED");
    attrs.add(ta);

    RepositoryResponse rr = brc.getTaskDataHandler().postTaskData(repository, data, attrs, nullProgressMonitor);
    assertEquals(rr.getReposonseKind(), RepositoryResponse.ResponseKind.TASK_UPDATED);

    data = brc.getTaskData(repository, rr.getTaskId(), nullProgressMonitor);
    rta = data.getRoot();
    ta = rta.getMappedAttribute(TaskAttribute.STATUS);
    assertEquals("RESOLVED", ta.getValue());
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:26,代码来源:BugzillaTest.java


示例3: postTaskData

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
@Override
public RepositoryResponse postTaskData(TaskRepository repository, TaskData taskData,
    Set<TaskAttribute> oldAttributes, IProgressMonitor monitor) throws CoreException {
  AppraisePluginReviewClient client;
  try {
    client = new AppraisePluginReviewClient(repository);
  } catch (GitClientException e) {
    throw new CoreException(new Status(
        IStatus.ERROR, AppraiseConnectorPlugin.PLUGIN_ID, "Failed to initialize git client", e));
  }

  String taskId;
  if (taskData.isNew()) {
    taskId = createNewReview(taskData, client);
  } else {
    taskId = updateExistingReview(taskData, client);
  }
  return new RepositoryResponse(RepositoryResponse.ResponseKind.TASK_UPDATED, taskId);
}
 
开发者ID:google,项目名称:git-appraise-eclipse,代码行数:20,代码来源:AppraiseReviewsTaskDataHandler.java


示例4: createIssue

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
public static String createIssue(BugzillaRepository repo, String summary) throws MalformedURLException, CoreException {
    BugzillaRepositoryConnector brc = Bugzilla.getInstance().getRepositoryConnector();
    TaskRepository tr = repo.getTaskRepository();
    TaskData data = TestUtil.createTaskData(brc, tr, summary, ISSUE_DESCRIPTION, ISSUE_SEVERITY);
    RepositoryResponse rr = TestUtil.postTaskData(brc, tr, data);
    return rr.getTaskId();
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:8,代码来源:TestUtil.java


示例5: addComment

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
public static RepositoryResponse addComment(TaskRepository taskRepository, TaskData data, String comment) throws CoreException {
    TaskAttribute ta = data.getRoot().createMappedAttribute(TaskAttribute.COMMENT_NEW);
    ta.setValue(comment);

    Set<TaskAttribute> attrs = new HashSet<TaskAttribute>();
    attrs.add(ta);
    return Bugzilla.getInstance().getRepositoryConnector().getTaskDataHandler().postTaskData(taskRepository, data, attrs, new NullProgressMonitor());
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:9,代码来源:TestUtil.java


示例6: testBugzilla

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
public void testBugzilla() throws Throwable {
//        TaskDataState state;
//        TaskData d;
        try {

            // create issue
            TaskData data = createIssue(brc, repository, "bug pruser", "pruser", "bug");

            TaskDataStore tds = new TaskDataStore(trm);

            // update issue
            updateTaskData(data, brc, repository);

            // hours worked
            timeTracking(data, brc, repository);
            
            // add atachment
            data = addAttachement(data, brc, repository, "Adding attachement", "some file", "crap");
            
            // read attachment
            readAttachement(data, brc, repository, "crap");

            // add comment
            String comment = "this is not a comment " + System.currentTimeMillis();
            RepositoryResponse rr = TestUtil.addComment(repository, data, comment);
            assertEquals(RepositoryResponse.ResponseKind.TASK_UPDATED, rr.getReposonseKind());

            // read comments
            readComment(data, brc, repository, comment);

            changeProduct(data, brc, repository);

            // resolve
            closeIssue(data, brc, repository);


        } catch (Exception e) {
            TestUtil.handleException(e);
        }
    }
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:41,代码来源:BugzillaTest.java


示例7: createIssue

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
public static TaskData createIssue(BugzillaRepositoryConnector brc, TaskRepository repository, String summary, String desc, String typeName) throws CoreException, MalformedURLException {
    TaskData data = TestUtil.createTaskData(brc, repository, summary, desc, typeName);
    RepositoryResponse rr = TestUtil.postTaskData(brc, repository, data);
    String taskId = rr.getTaskId();
    data = brc.getTaskData(repository, taskId, nullProgressMonitor);
    assertEquals(rr.getReposonseKind(), RepositoryResponse.ResponseKind.TASK_CREATED);
    assertNotNull(data);    

    return data;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:11,代码来源:BugzillaTest.java


示例8: postTaskData

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
@Override
public RepositoryResponse postTaskData(@NonNull TaskRepository repository, @NonNull TaskData taskData,
		@Nullable Set<TaskAttribute> oldAttributes, @Nullable IProgressMonitor monitor) throws CoreException {

	try {
		CharmTask charmTask = createTaskFromTaskData(taskData);
		connector.getClient(repository).putCharmTasks(charmTask);
	} catch (CharmHttpException e) {
		throw new CoreException(new Status(IStatus.ERROR, CharmCorePlugin.PLUGIN_ID, e.getErrorReason()));
	}

	return new RepositoryResponse(ResponseKind.TASK_UPDATED, taskData.getTaskId());
}
 
开发者ID:theits,项目名称:CharmMylynConnector,代码行数:14,代码来源:CharmTaskDataHandler.java


示例9: postTaskData

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
@Override
public RepositoryResponse postTaskData(TaskRepository repository, TaskData taskData,
		Set<TaskAttribute> oldAttributes, IProgressMonitor monitor) throws CoreException
{
	// TODO Auto-generated method stub
	return null;
}
 
开发者ID:andrea-rockt,项目名称:mylyn-redmine-connector,代码行数:8,代码来源:RedmineTaskDataHandler.java


示例10: getRepositoryResponse

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
public RepositoryResponse getRepositoryResponse () {
    return rr;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:4,代码来源:SubmitTaskCommand.java


示例11: getRepositoryResponse

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
public RepositoryResponse getRepositoryResponse() {
    return rr;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:4,代码来源:SubmitCommand.java


示例12: postTaskData

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
@Override
public RepositoryResponse postTaskData (TaskRepository repository, TaskData taskData, Set<TaskAttribute> oldAttributes, IProgressMonitor monitor) throws CoreException {
    return null;
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:5,代码来源:LocalTaskDataHandler.java


示例13: postTaskData

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
public static RepositoryResponse postTaskData(BugzillaRepositoryConnector brc, TaskRepository repository, TaskData data) throws CoreException {
    Set<TaskAttribute> attrs = new HashSet<TaskAttribute>(); // XXX what is this for
    return  brc.getTaskDataHandler().postTaskData(repository, data, attrs, NULL_PROGRESS_MONITOR);
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:5,代码来源:TestUtil.java


示例14: changeProduct

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
private void changeProduct(TaskData data, BugzillaRepositoryConnector brc, TaskRepository repository) throws CoreException, IOException {
    data = brc.getTaskData(repository, data.getTaskId(), nullProgressMonitor);

    TaskAttribute rta = data.getRoot();
    TaskAttribute ta = rta.getMappedAttribute(TaskAttribute.PRODUCT);

    BugzillaClient client = brc.getClientManager().getClient(repository, NULL_PROGRESS_MONITOR);
    
    List<String> products = client.getRepositoryConfiguration().getProducts();
    String newProject = TEST_PROJECT2;
    assertNotNull(newProject);
    ta.setValue(newProject);

    String version = client.getRepositoryConfiguration(NULL_PROGRESS_MONITOR).getVersions(newProject).get(0);
    ta = rta.getMappedAttribute(BugzillaAttribute.VERSION.getKey());
    ta.setValue(version);

    String component = client.getRepositoryConfiguration(NULL_PROGRESS_MONITOR).getComponents(newProject).get(0);
    ta = rta.getMappedAttribute(BugzillaAttribute.COMPONENT.getKey());
    ta.setValue(component);

    String milestone = client.getRepositoryConfiguration(NULL_PROGRESS_MONITOR).getTargetMilestones(newProject).get(0);
    ta = rta.getMappedAttribute(BugzillaAttribute.TARGET_MILESTONE.getKey());
    ta.setValue(milestone);

    ta = rta.getMappedAttribute(BugzillaAttribute.SET_DEFAULT_ASSIGNEE.getKey());
    if (ta != null) {
        ta.setValue("1"); 
    }

    ta = rta.getMappedAttribute(BugzillaAttribute.CONFIRM_PRODUCT_CHANGE.getKey());
    if (ta == null) {
        ta = BugzillaTaskDataHandler.createAttribute(rta, BugzillaAttribute.CONFIRM_PRODUCT_CHANGE);
    }

    if (ta != null) {
        ta.setValue("1");
    }

    RepositoryResponse rr = brc.getTaskDataHandler().postTaskData(repository, data, null, new NullProgressMonitor());
    assertEquals(rr.getReposonseKind(), RepositoryResponse.ResponseKind.TASK_UPDATED);


}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:45,代码来源:BugzillaTest.java


示例15: postTaskData

import org.eclipse.mylyn.tasks.core.RepositoryResponse; //导入依赖的package包/类
@Override
public RepositoryResponse postTaskData(TaskRepository repository, TaskData data,
		Set<TaskAttribute> attributes, IProgressMonitor monitor)
		throws CoreException {

	GitlabAttributeMapper attributeMapper = (GitlabAttributeMapper) data.getAttributeMapper();

	TaskAttribute root = data.getRoot();
	String labels = root.getAttribute(GitlabAttribute.LABELS.getTaskKey()).getValue();
	String title = root.getAttribute(GitlabAttribute.TITLE.getTaskKey()).getValue();
	String body = root.getAttribute(GitlabAttribute.BODY.getTaskKey()).getValue();

	Integer assigneeId = 0;

	// We have to check, if the assignee has changed. The gitlab api leaves three posiblities for the assignee ID:
	// 0: leave as it is
	// -1: unassign
	// real id: assign
	// If we didnt do this, Gitlab would create a comment everytime we edit the issue and there is still no
	// assignee
	for(TaskAttribute a : attributes) {
		if(a.getId().equals(GitlabAttribute.ASSIGNEE.getTaskKey())) {
			GitlabProjectMember assignee = attributeMapper.findProjectMemberByName(
					root.getAttribute(GitlabAttribute.ASSIGNEE.getTaskKey()).getValue());
			assigneeId = (assignee == null ? -1 : assignee.getId());
		}
	}

	GitlabMilestone milestone = attributeMapper.findMilestoneByName(
			root.getAttribute(GitlabAttribute.MILESTONE.getTaskKey()).getValue());
	Integer milestoneId = (milestone == null ? 0 : milestone.getId());

	GitlabConnection connection = ConnectionManager.get(repository);
	GitlabAPI api = connection.api();

	try {
		monitor.beginTask("Uploading task", IProgressMonitor.UNKNOWN);
		GitlabIssue issue = null;
		if(data.isNew()) {
			issue = api.createIssue(connection.project.getId(), assigneeId, milestoneId, labels, body, title);
			return new RepositoryResponse(ResponseKind.TASK_CREATED, "" + issue.getId());
		} else {

			if(root.getAttribute(TaskAttribute.COMMENT_NEW) != null &&
					!root.getAttribute(TaskAttribute.COMMENT_NEW).getValue().equals("")) {
				api.createNote(connection.project.getId(), GitlabConnector.getTicketId(data.getTaskId()),
						root.getAttribute(TaskAttribute.COMMENT_NEW).getValue());
			}

			String action = root.getAttribute(TaskAttribute.OPERATION).getValue();

			issue = api.editIssue(connection.project.getId(), GitlabConnector.getTicketId(data.getTaskId()), assigneeId,
					milestoneId, labels, body, title, GitlabAction.find(action).getGitlabIssueAction());
			return new RepositoryResponse(ResponseKind.TASK_UPDATED, "" + issue.getId());
		}
	} catch (IOException e) {
		throw new GitlabException("Unknown connection error!");
	} finally {
		monitor.done();
	}
}
 
开发者ID:pweingardt,项目名称:mylyn-gitlab,代码行数:62,代码来源:GitlabTaskDataHandler.java



注:本文中的org.eclipse.mylyn.tasks.core.RepositoryResponse类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java DescribeInternetGatewaysResult类代码示例发布时间:2022-05-22
下一篇:
Java AclPermissionEvaluator类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap