com.offbytwo.jenkins.model.ComputerWithDetails Maven / Gradle / Ivy
/*
* Copyright (c) 2013 Rising Oak LLC.
*
* Distributed under the MIT license: http://opensource.org/licenses/MIT
*/
package com.offbytwo.jenkins.model;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.google.common.base.Function;
import com.google.common.net.UrlEscapers;
public class ComputerWithDetails extends Computer {
String displayName;
List actions;
List executors;
Boolean idle;
Boolean jnlp;
Boolean launchSupported;
Boolean manualLaunchAllowed;
Map monitorData;
Integer numExecutors;
Boolean offline;
OfflineCause offlineCause;
String offlineCauseReason;
List oneOffExecutors;
Boolean temporarilyOffline;
public ComputerWithDetails()
{
}
public String getDisplayName() {
return displayName;
}
public List