1 2 package org.objectweb.rentacar.services.client;3 4 import javax.xml.bind.annotation.AccessType;5 import javax.xml.bind.annotation.XmlAccessorType;6 import javax.xml.bind.annotation.XmlType;7 import org.objectweb.rentacar.services.client.DummyResponse;8 9 10 /**11 * <p>Java class for dummyResponse complex type.12 * 13 * <p>The following schema fragment specifies the expected content contained within this class.14 * 15 * <pre>16 * <complexType name="dummyResponse">17 * <complexContent>18 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">19 * </restriction>20 * </complexContent>21 * </complexType>22 * </pre>23 * 24 * 25 */26 @XmlAccessorType(AccessType.FIELD)27 @XmlType(name = "dummyResponse")28 public class DummyResponse {29 30 31 }32