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

com.bitplan.mediawiki.japi.api.Module Maven / Gradle / Ivy

Go to download

Java library to call Mediawiki API described at http://www.mediawiki.org/wiki/API:Main_page

There is a newer version: 0.2.3
Show newest version
/**
 *
 * This file is part of the https://github.com/WolfgangFahl/Mediawiki-Japi open source project
 *
 * Copyright 2015-2021 BITPlan GmbH https://github.com/BITPlan
 *
 * 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.
 */
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert 
// Siehe http://java.sun.com/xml/jaxb 
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. 
// Generiert: 2015.05.23 um 06:48:00 PM CEST 
//


package com.bitplan.mediawiki.japi.api;

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


/**
 * 

Java-Klasse für anonymous complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="helpurls" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         <element name="parameters">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="param" maxOccurs="unbounded">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="type">
 *                               <complexType>
 *                                 <complexContent>
 *                                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                                     <sequence>
 *                                       <element name="t" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *                                     </sequence>
 *                                   </restriction>
 *                                 </complexContent>
 *                               </complexType>
 *                             </element>
 *                           </sequence>
 *                           <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="submodules" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="classname" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="path" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sourcename" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="licensetag" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="licenselink" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "helpurls", "parameters" }) public class Module { @XmlElement(required = true) protected Object helpurls; @XmlElement(required = true) protected Parameters parameters; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "classname") protected String classname; @XmlAttribute(name = "path") protected String path; @XmlAttribute(name = "prefix") protected String prefix; @XmlAttribute(name = "source") protected String source; @XmlAttribute(name = "sourcename") protected String sourcename; @XmlAttribute(name = "licensetag") protected String licensetag; @XmlAttribute(name = "licenselink") protected String licenselink; /** * Ruft den Wert der helpurls-Eigenschaft ab. * * @return * possible object is * {@link Object } * */ public Object getHelpurls() { return helpurls; } /** * Legt den Wert der helpurls-Eigenschaft fest. * * @param value * allowed object is * {@link Object } * */ public void setHelpurls(Object value) { this.helpurls = value; } /** * Ruft den Wert der parameters-Eigenschaft ab. * * @return * possible object is * {@link Parameters } * */ public Parameters getParameters() { return parameters; } /** * Legt den Wert der parameters-Eigenschaft fest. * * @param value * allowed object is * {@link Parameters } * */ public void setParameters(Parameters value) { this.parameters = value; } /** * Ruft den Wert der name-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der classname-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getClassname() { return classname; } /** * Legt den Wert der classname-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setClassname(String value) { this.classname = value; } /** * Ruft den Wert der path-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Legt den Wert der path-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Ruft den Wert der prefix-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getPrefix() { return prefix; } /** * Legt den Wert der prefix-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setPrefix(String value) { this.prefix = value; } /** * Ruft den Wert der source-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getSource() { return source; } /** * Legt den Wert der source-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setSource(String value) { this.source = value; } /** * Ruft den Wert der sourcename-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getSourcename() { return sourcename; } /** * Legt den Wert der sourcename-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setSourcename(String value) { this.sourcename = value; } /** * Ruft den Wert der licensetag-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getLicensetag() { return licensetag; } /** * Legt den Wert der licensetag-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setLicensetag(String value) { this.licensetag = value; } /** * Ruft den Wert der licenselink-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getLicenselink() { return licenselink; } /** * Legt den Wert der licenselink-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setLicenselink(String value) { this.licenselink = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy