package com.coverity.ws.v9; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for fileContentsDataObj complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="fileContentsDataObj"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="contents" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> * <element name="fileId" type="{http://ws.coverity.com/v9}fileIdDataObj" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "fileContentsDataObj", propOrder = { "contents", "fileId" }) public class FileContentsDataObj { protected byte[] contents; protected FileIdDataObj fileId; /** * Gets the value of the contents property. * * @return * possible object is * byte[] */ public byte[] getContents() { return contents; } /** * Sets the value of the contents property. * * @param value * allowed object is * byte[] */ public void setContents(byte[] value) { this.contents = value; } /** * Gets the value of the fileId property. * * @return * possible object is * {@link FileIdDataObj } * */ public FileIdDataObj getFileId() { return fileId; } /** * Sets the value of the fileId property. * * @param value * allowed object is * {@link FileIdDataObj } * */ public void setFileId(FileIdDataObj value) { this.fileId = value; } }