org.apache.maven.continuum.model.project.Project.removeBuildDefinition()方法的使用及代码示例

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

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

Project.removeBuildDefinition介绍

[英]Method removeBuildDefinition
[中]方法removeBuildDefinition

代码示例

代码示例来源:origin: org.apache.maven.continuum/continuum-core

public void removeBuildDefinition( int projectId, int buildDefinitionId )
  throws ContinuumException
{
  Project project = getProjectWithAllDetails( projectId );
  BuildDefinition buildDefinition = getBuildDefinition( projectId, buildDefinitionId );
  if ( buildDefinition != null )
  {
    project.removeBuildDefinition( buildDefinition );
    updateProject( project );
  }
}

代码示例来源:origin: org.apache.continuum/continuum-core

public void removeBuildDefinition( int projectId, int buildDefinitionId )
  throws ContinuumException
{
  Project project = getProjectWithAllDetails( projectId );
  BuildDefinition buildDefinition = getBuildDefinition( projectId, buildDefinitionId );
  if ( buildDefinition != null )
  {
    project.removeBuildDefinition( buildDefinition );
    updateProject( project );
  }
}

代码示例来源:origin: org.apache.continuum/continuum-core

public void execute( Map context )
    throws Exception
  {
    BuildDefinition buildDefinition = getBuildDefinition( context );
    int projectId = getProjectId( context );

    Project project = projectDao.getProjectWithAllDetails( projectId );

    // removing build definition from project doesn't effect anything if it is the default for the proejct, the
    // default will just change automatically to the default build definition of the project group.

    project.removeBuildDefinition( buildDefinition );

    projectDao.updateProject( project );
  }
}

代码示例来源:origin: org.apache.maven.continuum/continuum-core

public void execute( Map map )
    throws Exception
  {
    BuildDefinition buildDefinition = getBuildDefinition( map );
    int projectId = getProjectId( map );

    Project project = store.getProjectWithAllDetails( projectId );

    // removing build definition from project doesn't effect anything if it is the default for the proejct, the
    // default will just change automatically to the default build definition of the project group.

    project.removeBuildDefinition( buildDefinition );

    store.updateProject( project );
  }
}

相关文章

Project类方法