001// 002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004// Any modifications to this file will be lost upon recompilation of the source schema. 005// Generated on: 2017.05.21 at 04:43:57 PM EDT 006// 007 008 009package org.dcm4che3.audit; 010 011import javax.xml.bind.annotation.XmlAccessType; 012import javax.xml.bind.annotation.XmlAccessorType; 013import javax.xml.bind.annotation.XmlAttribute; 014import javax.xml.bind.annotation.XmlRootElement; 015import javax.xml.bind.annotation.XmlType; 016 017 018/** 019 * <p>Java class for anonymous complex type. 020 * 021 * <p>The following schema fragment specifies the expected content contained within this class. 022 * 023 * <pre> 024 * <complexType> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <attGroup ref="{}TypeValuePairType"/> 028 * </restriction> 029 * </complexContent> 030 * </complexType> 031 * </pre> 032 * 033 * 034 */ 035@XmlAccessorType(XmlAccessType.FIELD) 036@XmlType(name = "") 037@XmlRootElement(name = "ParticipantObjectDetail") 038public class ParticipantObjectDetail { 039 040 @XmlAttribute(name = "type", required = true) 041 protected String type; 042 @XmlAttribute(name = "value", required = true) 043 protected byte[] value; 044 045 /** 046 * Gets the value of the type property. 047 * 048 * @return 049 * possible object is 050 * {@link String } 051 * 052 */ 053 public String getType() { 054 return type; 055 } 056 057 /** 058 * Sets the value of the type property. 059 * 060 * @param value 061 * allowed object is 062 * {@link String } 063 * 064 */ 065 public void setType(String value) { 066 this.type = value; 067 } 068 069 /** 070 * Gets the value of the value property. 071 * 072 * @return 073 * possible object is 074 * byte[] 075 */ 076 public byte[] getValue() { 077 return value; 078 } 079 080 /** 081 * Sets the value of the value property. 082 * 083 * @param value 084 * allowed object is 085 * byte[] 086 */ 087 public void setValue(byte[] value) { 088 this.value = value; 089 } 090 091}