/Prototipo/wsConsume/build/generated-sources/jax-ws/wsconsume/GetData.java
http://prototipomemoria.googlecode.com/ · Java · 60 lines · 17 code · 8 blank · 35 comment · 0 complexity · 9e75cf4268a48b06880928bfddf32c8e MD5 · raw file
- package wsconsume;
-
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlType;
-
-
- /**
- * <p>Java class for getData complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="getData">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="params" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "getData", propOrder = {
- "params"
- })
- public class GetData {
-
- protected String params;
-
- /**
- * Gets the value of the params property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getParams() {
- return params;
- }
-
- /**
- * Sets the value of the params property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setParams(String value) {
- this.params = value;
- }
-
- }