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

org.openstack4j.openstack.compute.domain.NovaHostResourceBody Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.openstack.compute.domain;

import org.openstack4j.model.compute.HostResource;
import org.openstack4j.model.compute.HostResourceBody;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Nova Host Resource Body contains Nova host resource
 * 
 * @author Qin An
 */
public class NovaHostResourceBody implements HostResourceBody {

	public static final long serialVersionUID = 1L;

	@JsonProperty("resource")
	private NovaHostResource resource;

	/**
	 * {@inheritDoc}
	 */
	@Override
	public HostResource getHostResource() {
		return resource;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy