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

org.openstack4j.openstack.heat.domain.HeatResource Maven / Gradle / Ivy

package org.openstack4j.openstack.heat.domain;

import java.util.Date;
import java.util.List;

import org.openstack4j.model.common.Link;
import org.openstack4j.model.heat.Resource;
import org.openstack4j.openstack.common.GenericLink;
import org.openstack4j.openstack.common.ListResult;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * This is a model of a HeatResource. It uses Jackson annotations for
 * (de)serialization into JSON format
 * 
 * @author Octopus Zhang
 * 
 */
public class HeatResource implements Resource {
private static final long serialVersionUID = 1L;
	
	private List links;
	@JsonProperty("updated_time")
	private Date time;
	@JsonProperty("resource_type")
	private String type;
	@JsonProperty("resource_status_reason")
	private String reason;
	@JsonProperty("resource_name")
	private String resourceName;
	@JsonProperty("logical_resource_id")
	private String localReourceId;
	@JsonProperty("resource_status")
	private String resourceStatus;
	@JsonProperty("physical_resource_id")
	private String physicalResourceId;
	@JsonProperty("required_by")
	private List requiredBy;
	
	@Override
	public List getLinks() {
		return links;
	}
	
	@Override
	public Date getTime() {
		return time;
	}
	
	@Override
	public String getType() {
		return type;
	}
	
	@Override
	public String getReason() {
		return reason;
	}
	
	@Override
	public String getResourceName() {
		return resourceName;
	}
	
	@Override
	public String getLocalReourceId() {
		return localReourceId;
	}
	
	@Override
	public String getResourceStatus() {
		return resourceStatus;
	}
	
	@Override
	public String getPhysicalResourceId() {
		return physicalResourceId;
	}
	
	@Override
	public List getRequiredBy() {
		return requiredBy;
	}
	
	/**
	 * An inner class for representing lists of Heat Resource
	 * 
	 * @author Octopus Zhang
	 * 
	 */
	public static class Resources extends ListResult {
		private static final long serialVersionUID = 1L;
		
		@JsonProperty("resources")
		private List list;

		protected List value() {
			return list;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy