blob: 224381027a997b5bc020636a65b1582f0e47be19 [file] [log] [blame]
 /*
* Copyright 2001-2008 The Apache Software Foundation.
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18052
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System.Xml.Serialization;
//
// This source code was auto-generated by xsd, Version=4.0.30319.17929.
//
namespace net.java.dev.wadl
{
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class application
{
private doc[] docField;
private grammars grammarsField;
private resources[] resourcesField;
private object[] itemsField;
private System.Xml.XmlElement[] anyField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
public grammars grammars
{
get
{
return this.grammarsField;
}
set
{
this.grammarsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("resources")]
public resources[] resources
{
get
{
return this.resourcesField;
}
set
{
this.resourcesField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("method", typeof(method))]
[System.Xml.Serialization.XmlElementAttribute("param", typeof(param))]
[System.Xml.Serialization.XmlElementAttribute("representation", typeof(representation))]
[System.Xml.Serialization.XmlElementAttribute("resource_type", typeof(resource_type))]
public object[] Items
{
get
{
return this.itemsField;
}
set
{
this.itemsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class doc
{
private System.Xml.XmlNode[] anyField;
private string titleField;
private string langField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlNode[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string title
{
get
{
return this.titleField;
}
set
{
this.titleField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(Form = System.Xml.Schema.XmlSchemaForm.Qualified, Namespace = "http://www.w3.org/XML/1998/namespace")]
public string lang
{
get
{
return this.langField;
}
set
{
this.langField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class grammars
{
private doc[] docField;
private include[] includeField;
private System.Xml.XmlElement[] anyField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("include")]
public include[] include
{
get
{
return this.includeField;
}
set
{
this.includeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class include
{
private doc[] docField;
private string hrefField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string href
{
get
{
return this.hrefField;
}
set
{
this.hrefField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class resources
{
private doc[] docField;
private resource[] resourceField;
private System.Xml.XmlElement[] anyField;
private string baseField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("resource")]
public resource[] resource
{
get
{
return this.resourceField;
}
set
{
this.resourceField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string @base
{
get
{
return this.baseField;
}
set
{
this.baseField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class resource
{
private doc[] docField;
private param[] paramField;
private object[] itemsField;
private System.Xml.XmlElement[] anyField;
private string idField;
private string[] typeField;
private string queryTypeField;
private string pathField;
private System.Xml.XmlAttribute[] anyAttrField;
public resource()
{
this.queryTypeField = "application/x-www-form-urlencoded";
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("param")]
public param[] param
{
get
{
return this.paramField;
}
set
{
this.paramField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("method", typeof(method))]
[System.Xml.Serialization.XmlElementAttribute("resource", typeof(resource))]
public object[] Items
{
get
{
return this.itemsField;
}
set
{
this.itemsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "ID")]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string[] type
{
get
{
return this.typeField;
}
set
{
this.typeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
[System.ComponentModel.DefaultValueAttribute("application/x-www-form-urlencoded")]
public string queryType
{
get
{
return this.queryTypeField;
}
set
{
this.queryTypeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string path
{
get
{
return this.pathField;
}
set
{
this.pathField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class param
{
private doc[] docField;
private option[] optionField;
private link linkField;
private System.Xml.XmlElement[] anyField;
private string hrefField;
private string nameField;
private ParamStyle styleField;
private bool styleFieldSpecified;
private string idField;
private System.Xml.XmlQualifiedName typeField;
private string defaultField;
private bool requiredField;
private bool repeatingField;
private string fixedField;
private string pathField;
private System.Xml.XmlAttribute[] anyAttrField;
public param()
{
this.requiredField = false;
this.repeatingField = false;
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("option")]
public option[] option
{
get
{
return this.optionField;
}
set
{
this.optionField = value;
}
}
/// <remarks/>
public link link
{
get
{
return this.linkField;
}
set
{
this.linkField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string href
{
get
{
return this.hrefField;
}
set
{
this.hrefField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "NMTOKEN")]
public string name
{
get
{
return this.nameField;
}
set
{
this.nameField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public ParamStyle style
{
get
{
return this.styleField;
}
set
{
this.styleField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool styleSpecified
{
get
{
return this.styleFieldSpecified;
}
set
{
this.styleFieldSpecified = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "ID")]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public System.Xml.XmlQualifiedName type
{
get
{
return this.typeField;
}
set
{
this.typeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string @default
{
get
{
return this.defaultField;
}
set
{
this.defaultField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
[System.ComponentModel.DefaultValueAttribute(false)]
public bool required
{
get
{
return this.requiredField;
}
set
{
this.requiredField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
[System.ComponentModel.DefaultValueAttribute(false)]
public bool repeating
{
get
{
return this.repeatingField;
}
set
{
this.repeatingField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string @fixed
{
get
{
return this.fixedField;
}
set
{
this.fixedField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string path
{
get
{
return this.pathField;
}
set
{
this.pathField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class option
{
private doc[] docField;
private System.Xml.XmlElement[] anyField;
private string valueField;
private string mediaTypeField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string value
{
get
{
return this.valueField;
}
set
{
this.valueField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string mediaType
{
get
{
return this.mediaTypeField;
}
set
{
this.mediaTypeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class link
{
private doc[] docField;
private System.Xml.XmlElement[] anyField;
private string resource_typeField;
private string relField;
private string revField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string resource_type
{
get
{
return this.resource_typeField;
}
set
{
this.resource_typeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "token")]
public string rel
{
get
{
return this.relField;
}
set
{
this.relField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "token")]
public string rev
{
get
{
return this.revField;
}
set
{
this.revField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://wadl.dev.java.net/2009/02")]
public enum ParamStyle
{
/// <remarks/>
plain,
/// <remarks/>
query,
/// <remarks/>
matrix,
/// <remarks/>
header,
/// <remarks/>
template,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class method
{
private doc[] docField;
private request requestField;
private response[] responseField;
private System.Xml.XmlElement[] anyField;
private string idField;
private string nameField;
private string hrefField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
public request request
{
get
{
return this.requestField;
}
set
{
this.requestField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("response")]
public response[] response
{
get
{
return this.responseField;
}
set
{
this.responseField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "ID")]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string name
{
get
{
return this.nameField;
}
set
{
this.nameField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string href
{
get
{
return this.hrefField;
}
set
{
this.hrefField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class request
{
private doc[] docField;
private param[] paramField;
private representation[] representationField;
private System.Xml.XmlElement[] anyField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("param")]
public param[] param
{
get
{
return this.paramField;
}
set
{
this.paramField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("representation")]
public representation[] representation
{
get
{
return this.representationField;
}
set
{
this.representationField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class representation
{
private doc[] docField;
private param[] paramField;
private System.Xml.XmlElement[] anyField;
private string idField;
private System.Xml.XmlQualifiedName elementField;
private string mediaTypeField;
private string hrefField;
private string[] profileField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("param")]
public param[] param
{
get
{
return this.paramField;
}
set
{
this.paramField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "ID")]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public System.Xml.XmlQualifiedName element
{
get
{
return this.elementField;
}
set
{
this.elementField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string mediaType
{
get
{
return this.mediaTypeField;
}
set
{
this.mediaTypeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string href
{
get
{
return this.hrefField;
}
set
{
this.hrefField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
public string[] profile
{
get
{
return this.profileField;
}
set
{
this.profileField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class response
{
private doc[] docField;
private param[] paramField;
private representation[] representationField;
private System.Xml.XmlElement[] anyField;
private uint[] statusField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("param")]
public param[] param
{
get
{
return this.paramField;
}
set
{
this.paramField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("representation")]
public representation[] representation
{
get
{
return this.representationField;
}
set
{
this.representationField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public uint[] status
{
get
{
return this.statusField;
}
set
{
this.statusField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = "http://wadl.dev.java.net/2009/02")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "http://wadl.dev.java.net/2009/02", IsNullable = false)]
public partial class resource_type
{
private doc[] docField;
private param[] paramField;
private object[] itemsField;
private System.Xml.XmlElement[] anyField;
private string idField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("doc")]
public doc[] doc
{
get
{
return this.docField;
}
set
{
this.docField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("param")]
public param[] param
{
get
{
return this.paramField;
}
set
{
this.paramField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("method", typeof(method))]
[System.Xml.Serialization.XmlElementAttribute("resource", typeof(resource))]
public object[] Items
{
get
{
return this.itemsField;
}
set
{
this.itemsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute()]
public System.Xml.XmlElement[] Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType = "ID")]
public string id
{
get
{
return this.idField;
}
set
{
this.idField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
{
get
{
return this.anyAttrField;
}
set
{
this.anyAttrField = value;
}
}
}
}