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

org.apache.wink.common.internal.model.admin.Methods Maven / Gradle / Ivy

/*******************************************************************************
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 *  
 *******************************************************************************/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.05.24 at 01:47:17 PM IDT 
//

package org.apache.wink.common.internal.model.admin;

import java.util.ArrayList;
import java.util.List;

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

/**
 * 

* Java class for anonymous complex type. *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="method" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element ref="{http://apache.org/wink/common/internal/model/admin}accept-media-types" minOccurs="0"/>
 *                   <element ref="{http://apache.org/wink/common/internal/model/admin}produced-media-types" minOccurs="0"/>
 *                   <element ref="{http://apache.org/wink/common/internal/model/admin}query-parameters" minOccurs="0"/>
 *                   <element ref="{http://apache.org/wink/common/internal/model/admin}matrix-parameters" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = {"method"}) @XmlRootElement(name = "methods") public class Methods { @XmlElement(required = true) protected List method; /** * Gets the value of the method property. *

* This accessor method returns a reference to the live list, not a * snapshot. Therefore any modification you make to the returned list will * be present inside the JAXB object. This is why there is not a * set method for the method property. *

* For example, to add a new item, do as follows: * *

     * getMethod().add(newItem);
     * 
*

* Objects of the following type(s) are allowed in the list * {@link Methods.Method } */ public List getMethod() { if (method == null) { method = new ArrayList(); } return this.method; } /** *

* Java class for anonymous complex type. *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element ref="{http://apache.org/wink/common/internal/model/admin}accept-media-types" minOccurs="0"/>
     *         <element ref="{http://apache.org/wink/common/internal/model/admin}produced-media-types" minOccurs="0"/>
     *         <element ref="{http://apache.org/wink/common/internal/model/admin}query-parameters" minOccurs="0"/>
     *         <element ref="{http://apache.org/wink/common/internal/model/admin}matrix-parameters" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = {"name", "acceptMediaTypes", "producedMediaTypes", "queryParameters", "matrixParameters"}) public static class Method { protected String name; @XmlElement(name = "accept-media-types") protected AcceptMediaTypes acceptMediaTypes; @XmlElement(name = "produced-media-types") protected ProducedMediaTypes producedMediaTypes; @XmlElement(name = "query-parameters") protected QueryParameters queryParameters; @XmlElement(name = "matrix-parameters") protected MatrixParameters matrixParameters; /** * Gets the value of the name property. * * @return possible object is {@link String } */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value allowed object is {@link String } */ public void setName(String value) { this.name = value; } /** * Gets the value of the acceptMediaTypes property. * * @return possible object is {@link AcceptMediaTypes } */ public AcceptMediaTypes getAcceptMediaTypes() { return acceptMediaTypes; } /** * Sets the value of the acceptMediaTypes property. * * @param value allowed object is {@link AcceptMediaTypes } */ public void setAcceptMediaTypes(AcceptMediaTypes value) { this.acceptMediaTypes = value; } /** * Gets the value of the producedMediaTypes property. * * @return possible object is {@link ProducedMediaTypes } */ public ProducedMediaTypes getProducedMediaTypes() { return producedMediaTypes; } /** * Sets the value of the producedMediaTypes property. * * @param value allowed object is {@link ProducedMediaTypes } */ public void setProducedMediaTypes(ProducedMediaTypes value) { this.producedMediaTypes = value; } /** * Gets the value of the queryParameters property. * * @return possible object is {@link QueryParameters } */ public QueryParameters getQueryParameters() { return queryParameters; } /** * Sets the value of the queryParameters property. * * @param value allowed object is {@link QueryParameters } */ public void setQueryParameters(QueryParameters value) { this.queryParameters = value; } /** * Gets the value of the matrixParameters property. * * @return possible object is {@link MatrixParameters } */ public MatrixParameters getMatrixParameters() { return matrixParameters; } /** * Sets the value of the matrixParameters property. * * @param value allowed object is {@link MatrixParameters } */ public void setMatrixParameters(MatrixParameters value) { this.matrixParameters = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy