hudson.model.AbstractProject.setScm()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(88)

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

AbstractProject.setScm介绍

[英]Sets scmCheckoutRetryCount, Uses NumberUtils#isNumber(String) for checking retryCount param. If it is not valid number, null will be set.
[中]设置SCMCHECKOUTRYCOUNT,使用NumberUtils#isNumber(字符串)检查retryCount参数。如果它不是有效的数字,则将设置为null。

代码示例

代码示例来源:origin: jenkinsci/jenkins

setScm(SCMS.parseSCM(req,this));

代码示例来源:origin: org.eclipse.hudson/hudson-core

setScm(SCMS.parseSCM(req, this));

代码示例来源:origin: org.eclipse.hudson/hudson-core

@SuppressWarnings("unchecked")
public void setScm(SCM scm) throws IOException {
   setScm(scm, true);
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

@Override
protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, FormException {
  super.submit(req, rsp);
  makeDisabled(null != req.getParameter("disable"));
  setJDK(req.getParameter("jdk"));
  setQuietPeriod(null != req.getParameter(HAS_QUIET_PERIOD_PROPERTY_NAME)
      ? req.getParameter("quiet_period") : null);
  setScmCheckoutRetryCount(null != req.getParameter(HAS_SCM_CHECKOUT_RETRY_COUNT_PROPERTY_NAME)
      ? req.getParameter("scmCheckoutRetryCount") : null);
  setBlockBuildWhenDownstreamBuilding(null != req.getParameter("blockBuildWhenDownstreamBuilding"));
  setBlockBuildWhenUpstreamBuilding(null != req.getParameter("blockBuildWhenUpstreamBuilding"));
  if (req.getParameter(APPOINTED_NODE_PROPERTY_NAME) != null) {
    // New logic for handling whether this choice came from the dropdown or textfield.
    if (BASIC_KEY.equals(req.getParameter(AFFINITY_CHO0SER_KEY))) {
      setAppointedNode(
          new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(SLAVE_KEY)), false));
    } else {
      setAppointedNode(
          new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(ASSIGNED_LABEL_KEY)), true));
    }
  } else {
    setAppointedNode(null);
  }
  setCleanWorkspaceRequired(null != req.getParameter("cleanWorkspaceRequired"));
  setConcurrentBuild(req.getSubmittedForm().has("concurrentBuild"));
  authToken = BuildAuthorizationToken.create(req);
  setScm(SCMS.parseSCM(req, this));
  buildTriggers(req, req.getSubmittedForm(), Trigger.for_(this));
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

void convertScmProperty() throws IOException {
  if (null != scm && null == getProperty(SCM_PROPERTY_NAME)) {
    setScm(scm);
    scm = null;
  }
}

代码示例来源:origin: hudson/hudson-2.x

@Override
protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  makeDisabled(null != req.getParameter("disable"));
  setJDK(req.getParameter("jdk"));
  setQuietPeriod(null != req.getParameter(HAS_QUIET_PERIOD_PROPERTY_NAME)
    ? req.getParameter("quiet_period") : null);
  setScmCheckoutRetryCount(null != req.getParameter(HAS_SCM_CHECKOUT_RETRY_COUNT_PROPERTY_NAME)
    ? req.getParameter("scmCheckoutRetryCount") : null);
  setBlockBuildWhenDownstreamBuilding(null != req.getParameter("blockBuildWhenDownstreamBuilding"));
  setBlockBuildWhenUpstreamBuilding(null != req.getParameter("blockBuildWhenUpstreamBuilding"));
  if (req.getParameter(APPOINTED_NODE_PROPERTY_NAME) != null) {
    // New logic for handling whether this choice came from the dropdown or textfield.
    if (BASIC_KEY.equals(req.getParameter(AFFINITY_CHO0SER_KEY))) {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(SLAVE_KEY)), false));
    } else {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(ASSIGNED_LABEL_KEY)), true));
    }
  } else {
    setAppointedNode(null);
  }
  setCleanWorkspaceRequired(null != req.getParameter("cleanWorkspaceRequired"));
  setConcurrentBuild(req.getSubmittedForm().has("concurrentBuild"));
  authToken = BuildAuthorizationToken.create(req);
  setScm(SCMS.parseSCM(req,this));
  buildTriggers(req, req.getSubmittedForm(), Trigger.for_(this));
}

代码示例来源:origin: org.jvnet.hudson.main/hudson-core

void convertScmProperty() throws IOException {
  if (null != scm && null == getProperty(SCM_PROPERTY_NAME)) {
    setScm(scm);
    scm = null;
  }
}

代码示例来源:origin: org.jvnet.hudson.main/hudson-core

@Override
protected void submit(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException, FormException {
  super.submit(req,rsp);
  makeDisabled(null != req.getParameter("disable"));
  setJDK(req.getParameter("jdk"));
  setQuietPeriod(null != req.getParameter(HAS_QUIET_PERIOD_PROPERTY_NAME)
    ? req.getParameter("quiet_period") : null);
  setScmCheckoutRetryCount(null != req.getParameter(HAS_SCM_CHECKOUT_RETRY_COUNT_PROPERTY_NAME)
    ? req.getParameter("scmCheckoutRetryCount") : null);
  setBlockBuildWhenDownstreamBuilding(null != req.getParameter("blockBuildWhenDownstreamBuilding"));
  setBlockBuildWhenUpstreamBuilding(null != req.getParameter("blockBuildWhenUpstreamBuilding"));
  if (req.getParameter(APPOINTED_NODE_PROPERTY_NAME) != null) {
    // New logic for handling whether this choice came from the dropdown or textfield.
    if (BASIC_KEY.equals(req.getParameter(AFFINITY_CHO0SER_KEY))) {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(SLAVE_KEY)), false));
    } else {
      setAppointedNode(
        new AppointedNode(Util.fixEmptyAndTrim(req.getParameter(ASSIGNED_LABEL_KEY)), true));
    }
  } else {
    setAppointedNode(null);
  }
  setCleanWorkspaceRequired(null != req.getParameter("cleanWorkspaceRequired"));
  setConcurrentBuild(req.getSubmittedForm().has("concurrentBuild"));
  authToken = BuildAuthorizationToken.create(req);
  setScm(SCMS.parseSCM(req,this));
  buildTriggers(req, req.getSubmittedForm(), Trigger.for_(this));
}

代码示例来源:origin: org.eclipse.hudson/hudson-core

void convertScmProperty() throws IOException {
  if (null != scm && null == getProperty(SCM_PROPERTY_NAME)) {
    setScm(scm, false);
    scm = null;
  }
}

代码示例来源:origin: hudson/hudson-2.x

void convertScmProperty() throws IOException {
  if (null != scm && null == getProperty(SCM_PROPERTY_NAME)) {
    setScm(scm);
    scm = null;
  }
}

代码示例来源:origin: jenkinsci/multi-branch-project-plugin

@Nonnull
@Override
public P setBranch(@Nonnull P project, @Nonnull Branch branch) {
  BranchProjectProperty property = project.getProperty(BranchProjectProperty.class);
  BulkChange bc = new BulkChange(project);
  try {
    if (property == null) {
      project.addProperty(new BranchProjectProperty<P, B>(branch));
    } else {
      property.setBranch(branch);
    }
    project.setScm(branch.getScm());
    bc.commit();
  } catch (IOException e) {
    LOGGER.log(Level.WARNING, "Unable to set BranchProjectProperty", e);
    bc.abort();
  }
  return project;
}

代码示例来源:origin: jenkinsci/multi-branch-project-plugin

try {
  if (!(template.getScm() instanceof NullSCM)) {
    template.setScm(new NullSCM());

代码示例来源:origin: jenkinsci/multi-branch-project-plugin

template.setScm(new NullSCM());

代码示例来源:origin: jenkinsci/multi-branch-project-plugin

project.setScm(branch.getScm());

代码示例来源:origin: JoelJ/ez-templates

implementationProject.setScm(oldScm);

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

setScm(SCMS.parseSCM(req,this));

相关文章

微信公众号

最新文章

更多

AbstractProject类方法