/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *******************************************************************************/ package org.ebayopensource.turmeric.runtime.tests.common.cachepolicy; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import org.ebayopensource.turmeric.common.v1.types.BaseRequest; /** * <p>Java class for MyEchoServiceRequest complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MyEchoServiceRequest"> * <complexContent> * <extension base="{http://www.ebayopensource.org/turmeric/common/v1/types}BaseServiceRequest"> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MyEchoServiceRequest") //@XmlSeeAlso({ // EchoObjectRequest.class, // EchoStringRequest.class //}) public class MyEchoServiceRequest extends BaseRequest { }