com.atlassian.jira.project.Project.getDescription()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(8.6k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中com.atlassian.jira.project.Project.getDescription()方法的一些代码示例,展示了Project.getDescription()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Project.getDescription()方法的具体详情如下:
包路径:com.atlassian.jira.project.Project
类名称:Project
方法名:getDescription

Project.getDescription介绍

暂无

代码示例

代码示例来源:origin: com.atlassian.jira/jira-core

public String getDescription()
{
  return project.getDescription();
}

代码示例来源:origin: com.atlassian.jira/jira-core

@Nonnull
@Override
public String getViewHtml(@Nonnull final Project project)
{
  return getViewHtml(project.getDescription());
}

代码示例来源:origin: com.atlassian.jira/jira-core

@Nonnull
private String renderDescriptionAsHtml(@Nonnull final Project project)
{
  return Strings.nullToEmpty(renderer.getViewHtml(project.getDescription()));
}

代码示例来源:origin: com.atlassian.jira/jira-core

@Nonnull
@Override
public String getViewHtml(@Nonnull final Project project)
{
  return getViewHtml(project.getDescription());
}

代码示例来源:origin: com.atlassian.jira/jira-core

@Nonnull
@Override
public String getEditHtml(@Nonnull final Project project)
{
  return getEditHtml(project.getDescription());
}

代码示例来源:origin: com.atlassian.jira/jira-core

@Nonnull
@Override
public String getEditHtml(@Nonnull final Project project)
{
  return getEditHtml(project.getDescription());
}

代码示例来源:origin: com.atlassian.jira/jira-core

@Nonnull
@Override
public String getEditHtml(@Nonnull final Project project)
{
  return getEditHtml(project.getDescription());
}

代码示例来源:origin: com.atlassian.jira/jira-core

@Nonnull
@Override
public String getViewHtml(@Nonnull final Project project)
{
  return getViewHtml(project.getDescription());
}

代码示例来源:origin: com.atlassian.jira/jira-core

public String getRenderedProjectDescription(Project project)
{
  return projectDescriptionRenderer.getViewHtml(project.getDescription());
}

代码示例来源:origin: com.atlassian.studio/studio-theme-jira-plugin

private List<StudioProject> getRecentlyViewedProjects(final StudioProject currentProject, final List<String> recentProjectKeys)
{
  final List<StudioProject> projects = new ArrayList<StudioProject>();
  for (final String key : recentProjectKeys)
  {
    final Project project = projectManager.getProjectObjByKey(key);
    if (project != null)
    {
      // Don't include the 'selected' project in this list
      if (currentProject == null || !currentProject.getKey().equalsIgnoreCase(key))
      {
        projects.add(new StudioProjectImpl(key, project.getName(), project.getDescription(), project.getId(), project.getUrl()));
      }
    }
  }
  return projects;
}

代码示例来源:origin: com.atlassian.jira.plugins/atlassian-jira-rpc-plugin

public RemoteProject(Project project, ApplicationProperties applicationProperties)
{
  super(project.getId() == null ? "" : project.getId().toString(), project.getName());
  this.key = project.getKey();
  this.url = applicationProperties.getString(APKeys.JIRA_BASEURL) + "/browse/" + key;
  this.projectUrl = project.getUrl();
  this.lead = project.getLeadUserName();
  this.description = project.getDescription();
}

代码示例来源:origin: com.atlassian.jira/jira-api

/**
 * Build a Network project instance from a local Project.
 *
 * @param project the local project
 * @return a NetworkProject instance representing the given local project.
 */
@Nonnull
public static RemoteProject from(final Project project)
{
  return new RemoteProject(project.getId(), project.getKey(), project.getName(), project.getDescription(), RemoteUser.from(project.getProjectLead()), project.getUrl(), null, RemoteAvatar.from(project));
}

代码示例来源:origin: com.atlassian.studio/studio-theme-jira-plugin

private StudioProject getCurrentProject(final String currentProjectKey)
{
  if (currentProjectKey != null)
  {
    final Project project = projectManager.getProjectObjByKey(currentProjectKey);
    if (project != null)
    {
      return new StudioProjectImpl(project.getKey(), project.getName(), project.getDescription(), project.getId(), project.getUrl());
    }
  }
  return null;
}

代码示例来源:origin: com.atlassian.jira.plugins/atlassian-jira-rpc-plugin

com.atlassian.jira.bc.project.ProjectService.UpdateProjectValidationResult validateSetAvatar(final User user, final Project project, final Long avatarId)
{
  Long effectiveAvatarId = avatarId == null ? avatarManager.getDefaultAvatarId(PROJECT) : avatarId;
  return projectService.validateUpdateProject(
      user,
      project.getName(),
      project.getKey(),
      project.getDescription(),
      project.getLeadUserName(),
      project.getUrl(),
      project.getAssigneeType(),
      effectiveAvatarId);
}

代码示例来源:origin: com.atlassian.jira/jira-rest-plugin

private ProjectBeanBuilder summaryProjectBuilder(Project project, String expand)
{
  ProjectBeanBuilder builder = shortProjectBuilder(project)
                  .expand(expand)
                  .description(project.getDescription())
                  .url(project.getUrl())
                  .muteRoles()
                  .muteAssigneeType()
                  .muteUrl();
  //To maintain strict compatibility with previous project list we override the self URL generation behaviour
  //that projects get by default with the behaviour that was present from ProjectJsonBean
  //See JDEV-22464 for more details
  builder.self(URI.create(jiraBaseUrls.restApi2BaseUrl() + "project/" + project.getId().toString()));
  String leadUserKey  = project.getLeadUserKey();
  final ApplicationUser user = userManager.getUserByKeyEvenWhenUnknown(leadUserKey);
  builder.lead(user);
  return builder;
}

代码示例来源:origin: com.atlassian.jira/jira-core

private List<ChangedValue> buildChangedValues(final Project originalProject, final Project currentProject)
{
  final ChangedValuesBuilder changedValues = new ChangedValuesBuilder();
  changedValues.addIfDifferent("common.words.name", originalProject == null ? null : originalProject.getName(), currentProject.getName());
  changedValues.addIfDifferent("common.words.key", originalProject == null ? null : originalProject.getKey(), currentProject.getKey());
  changedValues.addIfDifferent("common.concepts.description", originalProject == null ? null : originalProject.getDescription(), currentProject.getDescription());
  changedValues.addIfDifferent("common.concepts.url", originalProject == null ? null : originalProject.getUrl(), currentProject.getUrl());
  changedValues.addIfDifferent("common.concepts.projectlead", originalProject == null ? null : originalProject.getLeadUserName(), currentProject.getLeadUserName());
  changedValues.addIfDifferent("admin.projects.default.assignee", originalProject == null ? null : pre(originalProject.getAssigneeType()), pre(currentProject.getAssigneeType()));
  return changedValues.build();
}

代码示例来源:origin: com.atlassian.studio/studio-theme-jira-plugin

@Override
protected String doExecute() throws Exception
{
  final Project project = getProjectObject();
  if(!isValidProject())
  {
    addError("deleteProject",getText("studio.project.delete.error.null.project"));
    log.info("Attempted to delete a null project");
    return INPUT;
  }
  // We are now going to delete the "project" in the linked applications
  operationResults = studioProjectService.delete(getJiraServiceContext(),
      new StudioProjectImpl(project.getKey(), project.getName(), project.getDescription()));
  //now lets delete the project in JIRA.
  super.doExecute();
  if (hasAnyErrors() || projectsDeletedUnsuccessfully())
  {
    return INPUT;
  }
  return SUCCESS;
}

代码示例来源:origin: com.atlassian.studio/studio-theme-jira-plugin

@Override
public String doExecute()
{
  // The JIRA project has already been created via the AddStudioProject action
  final Project project = projectManager.getProjectObj(pid);
  // We are now going to create the "project" in the linked applications
  products = studioProjectService.create(getJiraServiceContext(), new StudioProjectImpl(project.getKey(), project.getName(), project.getDescription(), project.getId(), project.getUrl()));
  if (hasAnyErrors() || projectsCreatedUnsuccessfully())
  {
    return redirectToGetErrorPage();
  }
  return getSuccessResult();
}

代码示例来源:origin: com.atlassian.jira/jira-core

@RequiresXsrfCheck
protected String doExecute() throws Exception
{
  if (!(hasProjectAdminPermission() || hasAdminPermission()))
  {
    return "securitybreach";
  }
  final Project projectObject = getProjectObject();
  final ProjectService.UpdateProjectValidationResult result =
      projectService.validateUpdateProject(getLoggedInUser(), projectObject.getName(), projectObject.getKey(),
          projectObject.getDescription(), getLead(), projectObject.getUrl(), getAssigneeType(), getAvatarId());
  projectService.updateProject(result);
  if (isInlineDialogMode())
  {
    return returnComplete();
  }
  return getRedirect("/plugins/servlet/project-config/" + getProjectObject().getKey() + "/roles");
}

代码示例来源:origin: com.atlassian.jira/jira-core

public String doDefault() throws Exception
{
  // check if the project exists:
  if (getProjectObject() == null)
  {
    return handleProjectDoesNotExist();
  }
  if (!(hasProjectAdminPermission() || hasAdminPermission()))
  {
    return "securitybreach";
  }
  setName(getProjectObject().getName());
  setAvatarId(getProjectObject().getAvatar() != null ? getProjectObject().getAvatar().getId() : null);
  setLead(getProjectObject().getLeadUserName());
  setUrl(getProjectObject().getUrl());
  setDescription(getProjectObject().getDescription());
  setAssigneeType(getProjectObject().getAssigneeType());
  return INPUT;
}

相关文章