1 2 package com.aggregator; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 8 9 /** 10 * <p>Java class for submitReport complex type. 11 * 12 * <p>The following schema fragment specifies the expected content contained within this class. 13 * 14 * <pre> 15 * <complexType name="submitReport"> 16 * <complexContent> 17 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 18 * <sequence> 19 * <element name="arg0" type="{http://ws.handling.interfaces.dddsample.citerus.se/}handlingReport" minOccurs="0"/> 20 * </sequence> 21 * </restriction> 22 * </complexContent> 23 * </complexType> 24 * </pre> 25 * 26 * 27 */ 28 @XmlAccessorType(XmlAccessType.FIELD) 29 @XmlType(name = "submitReport", propOrder = { 30 "arg0" 31 }) 32 public class SubmitReport { 33 34 protected HandlingReport arg0; 35 36 /** 37 * Gets the value of the arg0 property. 38 * 39 * @return 40 * possible object is 41 * {@link HandlingReport } 42 * 43 */ 44 public HandlingReport getArg0() { 45 return arg0; 46 } 47 48 /** 49 * Sets the value of the arg0 property. 50 * 51 * @param value 52 * allowed object is 53 * {@link HandlingReport } 54 * 55 */ 56 public void setArg0(HandlingReport value) { 57 this.arg0 = value; 58 } 59 60 }