hudson.model.Hudson.getView()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(6.2k)|赞(0)|评价(0)|浏览(113)

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

Hudson.getView介绍

[英]Gets the read-only list of all Views.
[中]获取所有视图的只读列表。

代码示例

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

@DataBoundConstructor
public ProxyView(String name) {
  super(name);
  if (Hudson.getInstance().getView(name) != null) {
    // if this is a valid global view name, let's assume the
    // user wants to show it
    proxiedViewName = name;
  }
}

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

@DataBoundConstructor
public ProxyView(String name) {
  super(name);
  if (Hudson.getInstance().getView(name) != null) {
    // if this is a valid global view name, let's assume the
    // user wants to show it
    proxiedViewName = name;
  }
}

代码示例来源:origin: org.hudsonci.plugins/instant-messaging

@Override
  public View getView(String viewName) {
    return Hudson.getInstance().getView(viewName);
  }
}

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

@DataBoundConstructor
public ProxyView(String name) {
  super(name);
  if (Hudson.getInstance().getView(name) != null) {
    // if this is a valid global view name, let's assume the
    // user wants to show it
    proxiedViewName = name;
  }
}

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

@DataBoundConstructor
public ProxyView(String name) {
  super(name);
  if (Hudson.getInstance().getView(name) != null) {
    // if this is a valid global view name, let's assume the
    // user wants to show it
    proxiedViewName = name;
  }
}

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

/**
 * Returns the primary {@link View} that renders the top-page of Hudson.
 */
@Exported
public View getPrimaryView() {
  View v = getView(primaryView);
  if (v == null) // fallback
  {
    v = views.get(0);
  }
  return v;
}

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

/**
 * Fails if a global view with the given name does not exist.
 */
public FormValidation doViewExistsCheck(@QueryParameter String value) {
  checkPermission(View.CREATE);
  String view = Util.fixEmpty(value);
  if(view==null) return FormValidation.ok();
  if(Hudson.getInstance().getView(view)!=null)
    return FormValidation.ok();
  else
    return FormValidation.error(Messages.ProxyView_NoSuchViewExists(value));
}

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

/**
 * Fails if a global view with the given name does not exist.
 */
public FormValidation doViewExistsCheck(@QueryParameter String value) {
  checkPermission(View.CREATE);
  String view = Util.fixEmpty(value);
  if(view==null) return FormValidation.ok();
  if(Hudson.getInstance().getView(view)!=null)
    return FormValidation.ok();
  else
    return FormValidation.error(Messages.ProxyView_NoSuchViewExists(value));
}

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

/**
 * Fails if a global view with the given name does not exist.
 */
public FormValidation doViewExistsCheck(@QueryParameter String value) {
  checkPermission(View.CREATE);
  String view = Util.fixEmpty(value);
  if(view==null) return FormValidation.ok();
  if(Hudson.getInstance().getView(view)!=null)
    return FormValidation.ok();
  else
    return FormValidation.error(Messages.ProxyView_NoSuchViewExists(value));
}

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

/**
 * Returns the primary {@link View} that renders the top-page of Hudson.
 */
@Exported
public View getPrimaryView() {
  View v = getView(primaryView);
  if (v == null) // fallback
  {
    v = views.get(0);
  }
  return v;
}

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

/**
 * Returns the primary {@link View} that renders the top-page of Hudson.
 */
@Exported
public View getPrimaryView() {
  View v = getView(primaryView);
  if (v == null) // fallback
  {
    v = views.get(0);
  }
  return v;
}

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

/**
 * Fails if a global view with the given name does not exist.
 */
public FormValidation doViewExistsCheck(@QueryParameter String value) {
  checkPermission(View.CREATE);
  String view = Util.fixEmpty(value);
  if (view == null) {
    return FormValidation.ok();
  }
  if (Hudson.getInstance().getView(view) != null) {
    return FormValidation.ok();
  } else {
    return FormValidation.error(Messages.ProxyView_NoSuchViewExists(value));
  }
}

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

@Override
protected void submit(StaplerRequest req) throws IOException, ServletException, FormException {
  String proxiedViewName = req.getSubmittedForm().getString("proxiedViewName");
  if (Hudson.getInstance().getView(proxiedViewName) == null) {
    throw new FormException("Not an existing global view", "proxiedViewName");
  }
  this.proxiedViewName = proxiedViewName;
}

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

@Override
protected void submit(StaplerRequest req) throws IOException, ServletException, FormException {
  String proxiedViewName = req.getSubmittedForm().getString("proxiedViewName");
  if (Hudson.getInstance().getView(proxiedViewName) == null) {
    throw new FormException("Not an existing global view", "proxiedViewName");
  }
  this.proxiedViewName = proxiedViewName;
}

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

@Override
protected void submit(StaplerRequest req) throws IOException, ServletException, FormException {
  String proxiedViewName = req.getSubmittedForm().getString("proxiedViewName");
  if (Hudson.getInstance().getView(proxiedViewName) == null) {
    throw new FormException("Not an existing global view", "proxiedViewName");
  }
  this.proxiedViewName = proxiedViewName;
}

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

@Override
protected void submit(StaplerRequest req) throws IOException, ServletException, FormException {
  String proxiedViewName = req.getSubmittedForm().getString("proxiedViewName");
  if (Hudson.getInstance().getView(proxiedViewName) == null) {
    throw new FormException("Not an existing global view", "proxiedViewName");
  }
  this.proxiedViewName = proxiedViewName;
}

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

public View getProxiedView() {
  if (proxiedViewName == null) {
    // just so we avoid errors just after creation
    return Hudson.getInstance().getPrimaryView();
  } else {
    return Hudson.getInstance().getView(proxiedViewName);
  }
}

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

public View getProxiedView() {
  if (proxiedViewName == null) {
    // just so we avoid errors just after creation
    return Hudson.getInstance().getPrimaryView();
  } else {
    return Hudson.getInstance().getView(proxiedViewName);
  }
}

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

public View getProxiedView() {
  if (proxiedViewName == null) {
    // just so we avoid errors just after creation
    return Hudson.getInstance().getPrimaryView();
  } else {
    return Hudson.getInstance().getView(proxiedViewName);
  }
}

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

public View getProxiedView() {
  if (proxiedViewName == null) {
    // just so we avoid errors just after creation
    return Hudson.getInstance().getPrimaryView();
  } else {
    return Hudson.getInstance().getView(proxiedViewName);
  }
}

相关文章

Hudson类方法