/* * Copyright (C) 2014 Intel Corporation * All rights reserved. */ package com.intel.mtwilson.trustagent.model; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; /** * * @author jbuhacoff */ @JacksonXmlRootElement(localName="daaResponse") public class DaaResponse { private byte[] response; public byte[] getResponse() { return response; } public void setResponse(byte[] response) { this.response = response; } }