All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sugarcrm.ws.soap.NameValue Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version

package com.sugarcrm.ws.soap;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for name_value complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="name_value">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "name_value", propOrder = { }) public class NameValue { @XmlElement(required = true) protected java.lang.String name; @XmlElement(required = true) protected java.lang.String value; /** * Gets the value of the name property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setName(java.lang.String value) { this.name = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setValue(java.lang.String value) { this.value = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy