/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * Copyright (c) 2013, MPL CodeInside http://codeinside.ru */ package ru.gosuslugi.smev.rev120315; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AppDocumentType", propOrder = { "requestCode", "binaryData", "reference", "digestValue" }) public class AppDocumentType { @XmlElement(name = "RequestCode", required = true) protected String requestCode; @XmlElement(name = "BinaryData") protected byte[] binaryData; @XmlElement(name = "Reference") protected ReferenceType reference; @XmlElement(name = "DigestValue") protected byte[] digestValue; /** * Gets the value of the requestCode property. * * @return * possible object is * {@link String } * */ public String getRequestCode() { return requestCode; } /** * Sets the value of the requestCode property. * * @param value * allowed object is * {@link String } * */ public void setRequestCode(String value) { this.requestCode = value; } /** * Gets the value of the binaryData property. * * @return * possible object is * byte[] */ public byte[] getBinaryData() { return binaryData; } /** * Sets the value of the binaryData property. * * @param value * allowed object is * byte[] */ public void setBinaryData(byte[] value) { this.binaryData = ((byte[]) value); } /** * Gets the value of the reference property. * * @return * possible object is * {@link ReferenceType } * */ public ReferenceType getReference() { return reference; } /** * Sets the value of the reference property. * * @param value * allowed object is * {@link ReferenceType } * */ public void setReference(ReferenceType value) { this.reference = value; } /** * Gets the value of the digestValue property. * * @return * possible object is * byte[] */ public byte[] getDigestValue() { return digestValue; } /** * Sets the value of the digestValue property. * * @param value * allowed object is * byte[] */ public void setDigestValue(byte[] value) { this.digestValue = ((byte[]) value); } }