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

org.openstack4j.openstack.sahara.domain.SaharaNodeGroupTemplateUnwrapped Maven / Gradle / Ivy

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

import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.sahara.NodeGroupTemplate;

import com.fasterxml.jackson.annotation.JsonUnwrapped;


/**
 * An OpenStack Sahara
 * Unwrap the root name of NodeGroupTemplate when serialized into json request 
 * 
 * @author Ekasit Kijsipongse
 */
public class SaharaNodeGroupTemplateUnwrapped implements ModelEntity {

	private static final long serialVersionUID = 1L;
	
        @JsonUnwrapped
        //@JsonProperty("node_group_template")
	private NodeGroupTemplate template;

        public SaharaNodeGroupTemplateUnwrapped(NodeGroupTemplate template) {
           this.template = template;
        }

        public NodeGroupTemplate getTemplate() { // need for serialization
           return template;
        }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy