/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.intel.mtwilson.tag.model; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.intel.mtwilson.jaxrs2.Document; /** * * @author ssbangal */ @JacksonXmlRootElement(localName="host_uuid") public class HostUuid extends Document{ private String hardwareUuid; public String getHardwareUuid() { return hardwareUuid; } public void setHardwareUuid(String hardwareUuid) { this.hardwareUuid = hardwareUuid; } }