All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adaptc.mws.plugins.natives.AggregateImagesInfo.groovy Maven / Gradle / Ivy

There is a newer version: 1.9-1701809693
Show newest version
package com.adaptc.mws.plugins.natives

/**
 * @author bsaville
 */
public class AggregateImagesInfo {
	List hypervisorImages = new ArrayList()
	List vmImages = new ArrayList()

	public String toString() {
		return "Aggregate Images: ${hypervisorImages+vmImages}"
	}
}

class HVImageInfo {
	String name
	String nodeName
	String hypervisorType
	List vmImageNames = new ArrayList()

	public String toString() {
		return "Hypervisor Image ${name} for ${nodeName} (${hypervisorType})"
	}
}

class VMImageInfo {
	String name

	public String toString() {
		return "VM Image ${name}"
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy