Skip to content

Instantly share code, notes, and snippets.

@dhonig
Created June 5, 2012 20:16
Show Gist options
  • Save dhonig/2877533 to your computer and use it in GitHub Desktop.
Save dhonig/2877533 to your computer and use it in GitHub Desktop.
NamveValueList
/**
* Mule Sugar CRM Connector
*
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package com.sugarcrm.sugarcrm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import org.xmlsoap.schemas.soap.encoding.Array;
/**
* <p>Java class for name_value_list complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="name_value_list">
* &lt;complexContent>
* &lt;restriction base="{http://schemas.xmlsoap.org/soap/encoding/}Array">
* &lt;attribute ref="{http://schemas.xmlsoap.org/soap/encoding/}arrayType"/>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "name_value_list")
public class NameValueList
extends Array
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment