com.bitplan.mediawiki.japi.api.Ii Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediawiki-japi Show documentation
Show all versions of mediawiki-japi Show documentation
Java library to call Mediawiki API described at http://www.mediawiki.org/wiki/API:Main_page
/**
*
* This file is part of the https://github.com/WolfgangFahl/Mediawiki-Japi open source project
*
* Copyright 2015-2019 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.06.13 um 08:01:41 AM CEST
//
package com.bitplan.mediawiki.japi.api;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* 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">
* <attribute name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* <attribute name="user" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="userid" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="width" type="{http://www.w3.org/2001/XMLSchema}short" />
* <attribute name="height" type="{http://www.w3.org/2001/XMLSchema}short" />
* <attribute name="parsedcomment" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="comment" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="html" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="canonicaltitle" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="url" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="descriptionurl" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="sha1" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="mime" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="mediatype" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="bitdepth" type="{http://www.w3.org/2001/XMLSchema}integer" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public class Ii {
@XmlAttribute(name = "timestamp")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar timestamp;
@XmlAttribute(name = "user")
protected String user;
@XmlAttribute(name = "userid")
protected Integer userid;
@XmlAttribute(name = "size")
protected Integer size;
@XmlAttribute(name = "width")
protected Short width;
@XmlAttribute(name = "height")
protected Short height;
@XmlAttribute(name = "parsedcomment")
protected String parsedcomment;
@XmlAttribute(name = "comment")
protected String comment;
@XmlAttribute(name = "html")
protected String html;
@XmlAttribute(name = "canonicaltitle")
protected String canonicaltitle;
@XmlAttribute(name = "url")
protected String url;
@XmlAttribute(name = "descriptionurl")
protected String descriptionurl;
@XmlAttribute(name = "sha1")
protected String sha1;
@XmlAttribute(name = "mime")
protected String mime;
@XmlAttribute(name = "mediatype")
protected String mediatype;
@XmlAttribute(name = "bitdepth")
protected BigInteger bitdepth;
/**
* Ruft den Wert der timestamp-Eigenschaft ab.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTimestamp() {
return timestamp;
}
/**
* Legt den Wert der timestamp-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTimestamp(XMLGregorianCalendar value) {
this.timestamp = value;
}
/**
* Ruft den Wert der user-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUser() {
return user;
}
/**
* Legt den Wert der user-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUser(String value) {
this.user = value;
}
/**
* Ruft den Wert der userid-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getUserid() {
return userid;
}
/**
* Legt den Wert der userid-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setUserid(Integer value) {
this.userid = value;
}
/**
* Ruft den Wert der size-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSize() {
return size;
}
/**
* Legt den Wert der size-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSize(Integer value) {
this.size = value;
}
/**
* Ruft den Wert der width-Eigenschaft ab.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getWidth() {
return width;
}
/**
* Legt den Wert der width-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setWidth(Short value) {
this.width = value;
}
/**
* Ruft den Wert der height-Eigenschaft ab.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getHeight() {
return height;
}
/**
* Legt den Wert der height-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setHeight(Short value) {
this.height = value;
}
/**
* Ruft den Wert der parsedcomment-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParsedcomment() {
return parsedcomment;
}
/**
* Legt den Wert der parsedcomment-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParsedcomment(String value) {
this.parsedcomment = value;
}
/**
* Ruft den Wert der comment-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComment() {
return comment;
}
/**
* Legt den Wert der comment-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComment(String value) {
this.comment = value;
}
/**
* Ruft den Wert der html-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHtml() {
return html;
}
/**
* Legt den Wert der html-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHtml(String value) {
this.html = value;
}
/**
* Ruft den Wert der canonicaltitle-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCanonicaltitle() {
return canonicaltitle;
}
/**
* Legt den Wert der canonicaltitle-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCanonicaltitle(String value) {
this.canonicaltitle = value;
}
/**
* Ruft den Wert der url-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Legt den Wert der url-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Ruft den Wert der descriptionurl-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescriptionurl() {
return descriptionurl;
}
/**
* Legt den Wert der descriptionurl-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescriptionurl(String value) {
this.descriptionurl = value;
}
/**
* Ruft den Wert der sha1-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSha1() {
return sha1;
}
/**
* Legt den Wert der sha1-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSha1(String value) {
this.sha1 = value;
}
/**
* Ruft den Wert der mime-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMime() {
return mime;
}
/**
* Legt den Wert der mime-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMime(String value) {
this.mime = value;
}
/**
* Ruft den Wert der mediatype-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMediatype() {
return mediatype;
}
/**
* Legt den Wert der mediatype-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMediatype(String value) {
this.mediatype = value;
}
/**
* Ruft den Wert der bitdepth-Eigenschaft ab.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getBitdepth() {
return bitdepth;
}
/**
* Legt den Wert der bitdepth-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setBitdepth(BigInteger value) {
this.bitdepth = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy