public String getCloudName() {
return cloudName;
}
protected DockerCloud getCloud(AbstractBuild<?, ?> build) {
DockerCloud cloud = null;
Node node = build.getBuiltOn();
if( node instanceof DockerSlave) {
DockerSlave dockerSlave = (DockerSlave)node;
cloud = dockerSlave.getCloud();