/* * 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="tpm_password") public class TpmPassword extends Document { private String password; public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }