" + contents + "
Java class for accessRights complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="accessRights"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="execute" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="group" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="read" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="write" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accessRights", propOrder = { + "execute", + "group", + "read", + "write" +}) +public class AccessRights { + + protected String execute; + protected String group; + protected String read; + protected String write; + + /** + * Gets the value of the execute property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExecute() { + return execute; + } + + /** + * Sets the value of the execute property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExecute(String value) { + this.execute = value; + } + + /** + * Gets the value of the group property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGroup() { + return group; + } + + /** + * Sets the value of the group property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGroup(String value) { + this.group = value; + } + + /** + * Gets the value of the read property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRead() { + return read; + } + + /** + * Sets the value of the read property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRead(String value) { + this.read = value; + } + + /** + * Gets the value of the write property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWrite() { + return write; + } + + /** + * Sets the value of the write property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWrite(String value) { + this.write = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/CancelTrigger.java b/src/generated/java/com/rapid_i/repository/wsimport/CancelTrigger.java new file mode 100644 index 000000000..f807414ce --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/CancelTrigger.java @@ -0,0 +1,77 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for cancelTrigger complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="cancelTrigger"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="triggerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cancelTrigger", propOrder = { + "triggerName" +}) +public class CancelTrigger { + + protected String triggerName; + + /** + * Gets the value of the triggerName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTriggerName() { + return triggerName; + } + + /** + * Sets the value of the triggerName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTriggerName(String value) { + this.triggerName = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/CancelTriggerResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/CancelTriggerResponse.java new file mode 100644 index 000000000..f19db41e0 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/CancelTriggerResponse.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for cancelTriggerResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="cancelTriggerResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}response" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "cancelTriggerResponse", propOrder = { + "_return" +}) +public class CancelTriggerResponse { + + @XmlElement(name = "return") + protected Response _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link Response } + * + */ + public Response getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link Response } + * + */ + public void setReturn(Response value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/CreateBlob.java b/src/generated/java/com/rapid_i/repository/wsimport/CreateBlob.java new file mode 100644 index 000000000..6d3270780 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/CreateBlob.java @@ -0,0 +1,104 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for createBlob complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="createBlob"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="parentLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="blobName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "createBlob", propOrder = { + "parentLocation", + "blobName" +}) +public class CreateBlob { + + protected String parentLocation; + protected String blobName; + + /** + * Gets the value of the parentLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getParentLocation() { + return parentLocation; + } + + /** + * Sets the value of the parentLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setParentLocation(String value) { + this.parentLocation = value; + } + + /** + * Gets the value of the blobName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBlobName() { + return blobName; + } + + /** + * Sets the value of the blobName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBlobName(String value) { + this.blobName = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/CreateBlobResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/CreateBlobResponse.java new file mode 100644 index 000000000..b4dddf487 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/CreateBlobResponse.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for createBlobResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="createBlobResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}entryResponse" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "createBlobResponse", propOrder = { + "_return" +}) +public class CreateBlobResponse { + + @XmlElement(name = "return") + protected EntryResponse _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link EntryResponse } + * + */ + public EntryResponse getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link EntryResponse } + * + */ + public void setReturn(EntryResponse value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/DeleteEntry.java b/src/generated/java/com/rapid_i/repository/wsimport/DeleteEntry.java new file mode 100644 index 000000000..58a962cf9 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/DeleteEntry.java @@ -0,0 +1,77 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for deleteEntry complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="deleteEntry"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="entryLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "deleteEntry", propOrder = { + "entryLocation" +}) +public class DeleteEntry { + + protected String entryLocation; + + /** + * Gets the value of the entryLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEntryLocation() { + return entryLocation; + } + + /** + * Sets the value of the entryLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEntryLocation(String value) { + this.entryLocation = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/DeleteEntryResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/DeleteEntryResponse.java new file mode 100644 index 000000000..5176932ab --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/DeleteEntryResponse.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for deleteEntryResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="deleteEntryResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}response" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "deleteEntryResponse", propOrder = { + "_return" +}) +public class DeleteEntryResponse { + + @XmlElement(name = "return") + protected Response _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link Response } + * + */ + public Response getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link Response } + * + */ + public void setReturn(Response value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/EntryResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/EntryResponse.java new file mode 100644 index 000000000..1af03af8e --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/EntryResponse.java @@ -0,0 +1,217 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for entryResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="entryResponse"> + * <complexContent> + * <extension base="{http://service.web.rapidanalytics.de/}response"> + * <sequence> + * <element name="date" type="{http://www.w3.org/2001/XMLSchema}long"/> + * <element name="ioObjectClassName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="latestRevision" type="{http://www.w3.org/2001/XMLSchema}int"/> + * <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="size" type="{http://www.w3.org/2001/XMLSchema}int"/> + * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="user" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </extension> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "entryResponse", propOrder = { + "date", + "ioObjectClassName", + "latestRevision", + "location", + "size", + "type", + "user" +}) +public class EntryResponse + extends Response +{ + + protected long date; + protected String ioObjectClassName; + protected int latestRevision; + protected String location; + protected int size; + protected String type; + protected String user; + + /** + * Gets the value of the date property. + * + */ + public long getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + */ + public void setDate(long value) { + this.date = value; + } + + /** + * Gets the value of the ioObjectClassName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIoObjectClassName() { + return ioObjectClassName; + } + + /** + * Sets the value of the ioObjectClassName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIoObjectClassName(String value) { + this.ioObjectClassName = value; + } + + /** + * Gets the value of the latestRevision property. + * + */ + public int getLatestRevision() { + return latestRevision; + } + + /** + * Sets the value of the latestRevision property. + * + */ + public void setLatestRevision(int value) { + this.latestRevision = value; + } + + /** + * Gets the value of the location property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocation() { + return location; + } + + /** + * Sets the value of the location property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocation(String value) { + this.location = value; + } + + /** + * Gets the value of the size property. + * + */ + public int getSize() { + return size; + } + + /** + * Sets the value of the size property. + * + */ + public void setSize(int value) { + this.size = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the user property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUser() { + return user; + } + + /** + * Sets the value of the user property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUser(String value) { + this.user = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron.java new file mode 100644 index 000000000..8bfbb7629 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron.java @@ -0,0 +1,189 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *
Java class for executeProcessCron complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessCron"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="cronExpression" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="start" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="end" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="processContext" type="{http://service.web.rapidanalytics.de/}processContextWrapper" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessCron", propOrder = { + "processLocation", + "cronExpression", + "start", + "end", + "processContext" +}) +public class ExecuteProcessCron { + + protected String processLocation; + protected String cronExpression; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar start; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar end; + protected ProcessContextWrapper processContext; + + /** + * Gets the value of the processLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcessLocation() { + return processLocation; + } + + /** + * Sets the value of the processLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcessLocation(String value) { + this.processLocation = value; + } + + /** + * Gets the value of the cronExpression property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCronExpression() { + return cronExpression; + } + + /** + * Sets the value of the cronExpression property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCronExpression(String value) { + this.cronExpression = value; + } + + /** + * Gets the value of the start property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStart() { + return start; + } + + /** + * Sets the value of the start property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStart(XMLGregorianCalendar value) { + this.start = value; + } + + /** + * Gets the value of the end property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEnd() { + return end; + } + + /** + * Sets the value of the end property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEnd(XMLGregorianCalendar value) { + this.end = value; + } + + /** + * Gets the value of the processContext property. + * + * @return + * possible object is + * {@link ProcessContextWrapper } + * + */ + public ProcessContextWrapper getProcessContext() { + return processContext; + } + + /** + * Sets the value of the processContext property. + * + * @param value + * allowed object is + * {@link ProcessContextWrapper } + * + */ + public void setProcessContext(ProcessContextWrapper value) { + this.processContext = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron13.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron13.java new file mode 100644 index 000000000..e0f6f4b52 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron13.java @@ -0,0 +1,216 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *
Java class for executeProcessCron_1_3 complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessCron_1_3"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="cronExpression" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="start" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="end" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="processContext" type="{http://service.web.rapidanalytics.de/}processContextWrapper" minOccurs="0"/> + * <element name="queueName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessCron_1_3", propOrder = { + "processLocation", + "cronExpression", + "start", + "end", + "processContext", + "queueName" +}) +public class ExecuteProcessCron13 { + + protected String processLocation; + protected String cronExpression; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar start; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar end; + protected ProcessContextWrapper processContext; + protected String queueName; + + /** + * Gets the value of the processLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcessLocation() { + return processLocation; + } + + /** + * Sets the value of the processLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcessLocation(String value) { + this.processLocation = value; + } + + /** + * Gets the value of the cronExpression property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCronExpression() { + return cronExpression; + } + + /** + * Sets the value of the cronExpression property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCronExpression(String value) { + this.cronExpression = value; + } + + /** + * Gets the value of the start property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStart() { + return start; + } + + /** + * Sets the value of the start property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStart(XMLGregorianCalendar value) { + this.start = value; + } + + /** + * Gets the value of the end property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEnd() { + return end; + } + + /** + * Sets the value of the end property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEnd(XMLGregorianCalendar value) { + this.end = value; + } + + /** + * Gets the value of the processContext property. + * + * @return + * possible object is + * {@link ProcessContextWrapper } + * + */ + public ProcessContextWrapper getProcessContext() { + return processContext; + } + + /** + * Sets the value of the processContext property. + * + * @param value + * allowed object is + * {@link ProcessContextWrapper } + * + */ + public void setProcessContext(ProcessContextWrapper value) { + this.processContext = value; + } + + /** + * Gets the value of the queueName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQueueName() { + return queueName; + } + + /** + * Sets the value of the queueName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQueueName(String value) { + this.queueName = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron13Response.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron13Response.java new file mode 100644 index 000000000..023a6ccc3 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCron13Response.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for executeProcessCron_1_3Response complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessCron_1_3Response"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}executionResponse" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessCron_1_3Response", propOrder = { + "_return" +}) +public class ExecuteProcessCron13Response { + + @XmlElement(name = "return") + protected ExecutionResponse _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link ExecutionResponse } + * + */ + public ExecutionResponse getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link ExecutionResponse } + * + */ + public void setReturn(ExecutionResponse value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCronResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCronResponse.java new file mode 100644 index 000000000..d01531d40 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessCronResponse.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for executeProcessCronResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessCronResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}executionResponse" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessCronResponse", propOrder = { + "_return" +}) +public class ExecuteProcessCronResponse { + + @XmlElement(name = "return") + protected ExecutionResponse _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link ExecutionResponse } + * + */ + public ExecutionResponse getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link ExecutionResponse } + * + */ + public void setReturn(ExecutionResponse value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple.java new file mode 100644 index 000000000..62da3c4a7 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple.java @@ -0,0 +1,134 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *
Java class for executeProcessSimple complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessSimple"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="executionTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="processContext" type="{http://service.web.rapidanalytics.de/}processContextWrapper" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessSimple", propOrder = { + "processLocation", + "executionTime", + "processContext" +}) +public class ExecuteProcessSimple { + + protected String processLocation; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar executionTime; + protected ProcessContextWrapper processContext; + + /** + * Gets the value of the processLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcessLocation() { + return processLocation; + } + + /** + * Sets the value of the processLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcessLocation(String value) { + this.processLocation = value; + } + + /** + * Gets the value of the executionTime property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getExecutionTime() { + return executionTime; + } + + /** + * Sets the value of the executionTime property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setExecutionTime(XMLGregorianCalendar value) { + this.executionTime = value; + } + + /** + * Gets the value of the processContext property. + * + * @return + * possible object is + * {@link ProcessContextWrapper } + * + */ + public ProcessContextWrapper getProcessContext() { + return processContext; + } + + /** + * Sets the value of the processContext property. + * + * @param value + * allowed object is + * {@link ProcessContextWrapper } + * + */ + public void setProcessContext(ProcessContextWrapper value) { + this.processContext = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple13.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple13.java new file mode 100644 index 000000000..87aac64da --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple13.java @@ -0,0 +1,161 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *
Java class for executeProcessSimple_1_3 complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessSimple_1_3"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="executionTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="processContext" type="{http://service.web.rapidanalytics.de/}processContextWrapper" minOccurs="0"/> + * <element name="queueName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessSimple_1_3", propOrder = { + "processLocation", + "executionTime", + "processContext", + "queueName" +}) +public class ExecuteProcessSimple13 { + + protected String processLocation; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar executionTime; + protected ProcessContextWrapper processContext; + protected String queueName; + + /** + * Gets the value of the processLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcessLocation() { + return processLocation; + } + + /** + * Sets the value of the processLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcessLocation(String value) { + this.processLocation = value; + } + + /** + * Gets the value of the executionTime property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getExecutionTime() { + return executionTime; + } + + /** + * Sets the value of the executionTime property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setExecutionTime(XMLGregorianCalendar value) { + this.executionTime = value; + } + + /** + * Gets the value of the processContext property. + * + * @return + * possible object is + * {@link ProcessContextWrapper } + * + */ + public ProcessContextWrapper getProcessContext() { + return processContext; + } + + /** + * Sets the value of the processContext property. + * + * @param value + * allowed object is + * {@link ProcessContextWrapper } + * + */ + public void setProcessContext(ProcessContextWrapper value) { + this.processContext = value; + } + + /** + * Gets the value of the queueName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQueueName() { + return queueName; + } + + /** + * Sets the value of the queueName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQueueName(String value) { + this.queueName = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple13Response.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple13Response.java new file mode 100644 index 000000000..895e416c0 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimple13Response.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for executeProcessSimple_1_3Response complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessSimple_1_3Response"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}executionResponse" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessSimple_1_3Response", propOrder = { + "_return" +}) +public class ExecuteProcessSimple13Response { + + @XmlElement(name = "return") + protected ExecutionResponse _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link ExecutionResponse } + * + */ + public ExecutionResponse getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link ExecutionResponse } + * + */ + public void setReturn(ExecutionResponse value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimpleResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimpleResponse.java new file mode 100644 index 000000000..e9cd867c2 --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessSimpleResponse.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for executeProcessSimpleResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessSimpleResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}executionResponse" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessSimpleResponse", propOrder = { + "_return" +}) +public class ExecuteProcessSimpleResponse { + + @XmlElement(name = "return") + protected ExecutionResponse _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link ExecutionResponse } + * + */ + public ExecutionResponse getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link ExecutionResponse } + * + */ + public void setReturn(ExecutionResponse value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessWithOffset.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessWithOffset.java new file mode 100644 index 000000000..075762a2a --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessWithOffset.java @@ -0,0 +1,158 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for executeProcessWithOffset complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessWithOffset"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="executionTime" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> + * <element name="processContext" type="{http://service.web.rapidanalytics.de/}processContextWrapper" minOccurs="0"/> + * <element name="queueName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessWithOffset", propOrder = { + "processLocation", + "executionTime", + "processContext", + "queueName" +}) +public class ExecuteProcessWithOffset { + + protected String processLocation; + protected Long executionTime; + protected ProcessContextWrapper processContext; + protected String queueName; + + /** + * Gets the value of the processLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProcessLocation() { + return processLocation; + } + + /** + * Sets the value of the processLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProcessLocation(String value) { + this.processLocation = value; + } + + /** + * Gets the value of the executionTime property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getExecutionTime() { + return executionTime; + } + + /** + * Sets the value of the executionTime property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setExecutionTime(Long value) { + this.executionTime = value; + } + + /** + * Gets the value of the processContext property. + * + * @return + * possible object is + * {@link ProcessContextWrapper } + * + */ + public ProcessContextWrapper getProcessContext() { + return processContext; + } + + /** + * Sets the value of the processContext property. + * + * @param value + * allowed object is + * {@link ProcessContextWrapper } + * + */ + public void setProcessContext(ProcessContextWrapper value) { + this.processContext = value; + } + + /** + * Gets the value of the queueName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQueueName() { + return queueName; + } + + /** + * Sets the value of the queueName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQueueName(String value) { + this.queueName = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessWithOffsetResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessWithOffsetResponse.java new file mode 100644 index 000000000..32ca89b0a --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecuteProcessWithOffsetResponse.java @@ -0,0 +1,79 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *
Java class for executeProcessWithOffsetResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executeProcessWithOffsetResponse"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="return" type="{http://service.web.rapidanalytics.de/}executionResponse" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executeProcessWithOffsetResponse", propOrder = { + "_return" +}) +public class ExecuteProcessWithOffsetResponse { + + @XmlElement(name = "return") + protected ExecutionResponse _return; + + /** + * Gets the value of the return property. + * + * @return + * possible object is + * {@link ExecutionResponse } + * + */ + public ExecutionResponse getReturn() { + return _return; + } + + /** + * Sets the value of the return property. + * + * @param value + * allowed object is + * {@link ExecutionResponse } + * + */ + public void setReturn(ExecutionResponse value) { + this._return = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ExecutionResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/ExecutionResponse.java new file mode 100644 index 000000000..341d0092b --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/ExecutionResponse.java @@ -0,0 +1,101 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *
Java class for executionResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="executionResponse"> + * <complexContent> + * <extension base="{http://service.web.rapidanalytics.de/}response"> + * <sequence> + * <element name="firstExecution" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> + * <element name="jobId" type="{http://www.w3.org/2001/XMLSchema}int"/> + * </sequence> + * </extension> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "executionResponse", propOrder = { + "firstExecution", + "jobId" +}) +public class ExecutionResponse + extends Response +{ + + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar firstExecution; + protected int jobId; + + /** + * Gets the value of the firstExecution property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFirstExecution() { + return firstExecution; + } + + /** + * Sets the value of the firstExecution property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFirstExecution(XMLGregorianCalendar value) { + this.firstExecution = value; + } + + /** + * Gets the value of the jobId property. + * + */ + public int getJobId() { + return jobId; + } + + /** + * Sets the value of the jobId property. + * + */ + public void setJobId(int value) { + this.jobId = value; + } + +} diff --git a/src/generated/java/com/rapid_i/repository/wsimport/FolderContentsResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/FolderContentsResponse.java new file mode 100644 index 000000000..37bd2ca1f --- /dev/null +++ b/src/generated/java/com/rapid_i/repository/wsimport/FolderContentsResponse.java @@ -0,0 +1,115 @@ +/** + * Copyright (C) 2001-2016 by RapidMiner and the contributors + * + * Complete list of developers available at our web site: + * + * http://rapidminer.com + * + * This program is free software: you can redistribute it and/or modify it under the terms of the + * GNU Affero General Public License as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License along with this program. + * If not, see http://www.gnu.org/licenses/. + */ +package com.rapid_i.repository.wsimport; + +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.XmlType; + + +/** + *
Java class for folderContentsResponse complex type. + * + *
The following schema fragment specifies the expected content contained within this class. + * + *
+ * <complexType name="folderContentsResponse"> + * <complexContent> + * <extension base="{http://service.web.rapidanalytics.de/}response"> + * <sequence> + * <element name="entries" type="{http://service.web.rapidanalytics.de/}entryResponse" maxOccurs="unbounded" minOccurs="0"/> + * <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </extension> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "folderContentsResponse", propOrder = { + "entries", + "location" +}) +public class FolderContentsResponse + extends Response +{ + + @XmlElement(nillable = true) + protected List
+ * 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 entries property.
+ *
+ *
+ * For example, to add a new item, do as follows: + *
+ * getEntries().add(newItem); + *+ * + * + *
+ * Objects of the following type(s) are allowed in the list
+ * {@link EntryResponse }
+ *
+ *
+ */
+ public List Java class for getAccessRights complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getAccessRightsResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link AccessRights }
+ *
+ *
+ */
+ public List Java class for getAllGroupNames complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getAllGroupNamesResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List Java class for getEntry complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getEntryResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getFolderContents complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getFolderContentsResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getFreeMemory complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getFreeMemoryResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getInstalledPlugins complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getInstalledPluginsResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link PluginInfo }
+ *
+ *
+ */
+ public List Java class for getMaxMemory complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getMaxMemoryResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getProcessContents complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getProcessContentsResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getProcessIdsForJobId complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getProcessIdsForJobIdResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Integer }
+ *
+ *
+ */
+ public List Java class for getQueueInfo complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getQueueInfoResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link QueueProperty }
+ *
+ *
+ */
+ public List Java class for getQueueNames complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getQueueNamesResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List Java class for getQueueState complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getQueueStateResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getRunningProcesses complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getRunningProcessesInfo complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getRunningProcessesInfoResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getRunningProcessesResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link Integer }
+ *
+ *
+ */
+ public List Java class for getSystemLoadAverage complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getSystemLoadAverageResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getTotalMemory complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getTotalMemoryResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getUpSince complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getUpSinceResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVersionNumber complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getVersionNumberResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for macroDefinition complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for makeFolder complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for makeFolderResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for move complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for moveResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _GetProcessContents_QNAME = new QName("http://service.web.rapidanalytics.de/", "getProcessContents");
+ private final static QName _GetAccessRightsResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "getAccessRightsResponse");
+ private final static QName _GetEntry_QNAME = new QName("http://service.web.rapidanalytics.de/", "getEntry");
+ private final static QName _DeleteEntry_QNAME = new QName("http://service.web.rapidanalytics.de/", "deleteEntry");
+ private final static QName _StoreProcess_QNAME = new QName("http://service.web.rapidanalytics.de/", "storeProcess");
+ private final static QName _StartNewRevisionResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "startNewRevisionResponse");
+ private final static QName _RenameResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "renameResponse");
+ private final static QName _GetAccessRights_QNAME = new QName("http://service.web.rapidanalytics.de/", "getAccessRights");
+ private final static QName _MakeFolderResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "makeFolderResponse");
+ private final static QName _MakeFolder_QNAME = new QName("http://service.web.rapidanalytics.de/", "makeFolder");
+ private final static QName _Move_QNAME = new QName("http://service.web.rapidanalytics.de/", "move");
+ private final static QName _GetFolderContentsResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "getFolderContentsResponse");
+ private final static QName _DeleteEntryResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "deleteEntryResponse");
+ private final static QName _Rename_QNAME = new QName("http://service.web.rapidanalytics.de/", "rename");
+ private final static QName _SetAccessRightsResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "setAccessRightsResponse");
+ private final static QName _GetProcessContentsResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "getProcessContentsResponse");
+ private final static QName _GetFolderContents_QNAME = new QName("http://service.web.rapidanalytics.de/", "getFolderContents");
+ private final static QName _GetEntryResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "getEntryResponse");
+ private final static QName _StoreProcessResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "storeProcessResponse");
+ private final static QName _GetAllGroupNames_QNAME = new QName("http://service.web.rapidanalytics.de/", "getAllGroupNames");
+ private final static QName _CreateBlobResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "createBlobResponse");
+ private final static QName _MoveResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "moveResponse");
+ private final static QName _CreateBlob_QNAME = new QName("http://service.web.rapidanalytics.de/", "createBlob");
+ private final static QName _StartNewRevision_QNAME = new QName("http://service.web.rapidanalytics.de/", "startNewRevision");
+ private final static QName _SetAccessRights_QNAME = new QName("http://service.web.rapidanalytics.de/", "setAccessRights");
+ private final static QName _GetAllGroupNamesResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "getAllGroupNamesResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.rapid_i.repository.wsimport
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link GetFolderContentsResponse }
+ *
+ */
+ public GetFolderContentsResponse createGetFolderContentsResponse() {
+ return new GetFolderContentsResponse();
+ }
+
+ /**
+ * Create an instance of {@link DeleteEntryResponse }
+ *
+ */
+ public DeleteEntryResponse createDeleteEntryResponse() {
+ return new DeleteEntryResponse();
+ }
+
+ /**
+ * Create an instance of {@link Rename }
+ *
+ */
+ public Rename createRename() {
+ return new Rename();
+ }
+
+ /**
+ * Create an instance of {@link GetFolderContents }
+ *
+ */
+ public GetFolderContents createGetFolderContents() {
+ return new GetFolderContents();
+ }
+
+ /**
+ * Create an instance of {@link GetProcessContentsResponse }
+ *
+ */
+ public GetProcessContentsResponse createGetProcessContentsResponse() {
+ return new GetProcessContentsResponse();
+ }
+
+ /**
+ * Create an instance of {@link SetAccessRightsResponse }
+ *
+ */
+ public SetAccessRightsResponse createSetAccessRightsResponse() {
+ return new SetAccessRightsResponse();
+ }
+
+ /**
+ * Create an instance of {@link StoreProcessResponse }
+ *
+ */
+ public StoreProcessResponse createStoreProcessResponse() {
+ return new StoreProcessResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetEntryResponse }
+ *
+ */
+ public GetEntryResponse createGetEntryResponse() {
+ return new GetEntryResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetEntry }
+ *
+ */
+ public GetEntry createGetEntry() {
+ return new GetEntry();
+ }
+
+ /**
+ * Create an instance of {@link GetAccessRightsResponse }
+ *
+ */
+ public GetAccessRightsResponse createGetAccessRightsResponse() {
+ return new GetAccessRightsResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetProcessContents }
+ *
+ */
+ public GetProcessContents createGetProcessContents() {
+ return new GetProcessContents();
+ }
+
+ /**
+ * Create an instance of {@link DeleteEntry }
+ *
+ */
+ public DeleteEntry createDeleteEntry() {
+ return new DeleteEntry();
+ }
+
+ /**
+ * Create an instance of {@link StoreProcess }
+ *
+ */
+ public StoreProcess createStoreProcess() {
+ return new StoreProcess();
+ }
+
+ /**
+ * Create an instance of {@link StartNewRevisionResponse }
+ *
+ */
+ public StartNewRevisionResponse createStartNewRevisionResponse() {
+ return new StartNewRevisionResponse();
+ }
+
+ /**
+ * Create an instance of {@link RenameResponse }
+ *
+ */
+ public RenameResponse createRenameResponse() {
+ return new RenameResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetAccessRights }
+ *
+ */
+ public GetAccessRights createGetAccessRights() {
+ return new GetAccessRights();
+ }
+
+ /**
+ * Create an instance of {@link MakeFolderResponse }
+ *
+ */
+ public MakeFolderResponse createMakeFolderResponse() {
+ return new MakeFolderResponse();
+ }
+
+ /**
+ * Create an instance of {@link MakeFolder }
+ *
+ */
+ public MakeFolder createMakeFolder() {
+ return new MakeFolder();
+ }
+
+ /**
+ * Create an instance of {@link Move }
+ *
+ */
+ public Move createMove() {
+ return new Move();
+ }
+
+ /**
+ * Create an instance of {@link StartNewRevision }
+ *
+ */
+ public StartNewRevision createStartNewRevision() {
+ return new StartNewRevision();
+ }
+
+ /**
+ * Create an instance of {@link SetAccessRights }
+ *
+ */
+ public SetAccessRights createSetAccessRights() {
+ return new SetAccessRights();
+ }
+
+ /**
+ * Create an instance of {@link GetAllGroupNamesResponse }
+ *
+ */
+ public GetAllGroupNamesResponse createGetAllGroupNamesResponse() {
+ return new GetAllGroupNamesResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetAllGroupNames }
+ *
+ */
+ public GetAllGroupNames createGetAllGroupNames() {
+ return new GetAllGroupNames();
+ }
+
+ /**
+ * Create an instance of {@link CreateBlobResponse }
+ *
+ */
+ public CreateBlobResponse createCreateBlobResponse() {
+ return new CreateBlobResponse();
+ }
+
+ /**
+ * Create an instance of {@link MoveResponse }
+ *
+ */
+ public MoveResponse createMoveResponse() {
+ return new MoveResponse();
+ }
+
+ /**
+ * Create an instance of {@link CreateBlob }
+ *
+ */
+ public CreateBlob createCreateBlob() {
+ return new CreateBlob();
+ }
+
+ /**
+ * Create an instance of {@link EntryResponse }
+ *
+ */
+ public EntryResponse createEntryResponse() {
+ return new EntryResponse();
+ }
+
+ /**
+ * Create an instance of {@link Response }
+ *
+ */
+ public Response createResponse() {
+ return new Response();
+ }
+
+ /**
+ * Create an instance of {@link ProcessContentsResponse }
+ *
+ */
+ public ProcessContentsResponse createProcessContentsResponse() {
+ return new ProcessContentsResponse();
+ }
+
+ /**
+ * Create an instance of {@link AccessRights }
+ *
+ */
+ public AccessRights createAccessRights() {
+ return new AccessRights();
+ }
+
+ /**
+ * Create an instance of {@link FolderContentsResponse }
+ *
+ */
+ public FolderContentsResponse createFolderContentsResponse() {
+ return new FolderContentsResponse();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link GetProcessContents }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://service.web.rapidanalytics.de/", name = "getProcessContents")
+ public JAXBElement Java class for pluginInfo complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for processContentsResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for processContextWrapper complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link MacroDefinition }
+ *
+ *
+ */
+ public List
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List Java class for processResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List Java class for processStackTrace complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link ProcessStackTraceElement }
+ *
+ *
+ */
+ public List Java class for processStackTraceElement complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for queueProperty complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for queueState complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for rename complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for renameResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for response complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for setAccessRights complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link AccessRights }
+ *
+ *
+ */
+ public List Java class for setAccessRightsResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for startNewRevision complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for startNewRevisionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for stopProcess complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for stopProcessResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for storeProcess complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for storeProcessResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for checkSetup complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for checkSetupResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for createDBConnection complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * 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
+ * For example, to add a new item, do as follows:
+ *
+ * Objects of the following type(s) are allowed in the list
+ * {@link String }
+ *
+ *
+ */
+ public List Java class for createDBConnectionResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getGlobalProperty complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for getGlobalPropertyResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _CheckSetupResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "checkSetupResponse");
+ private final static QName _GetGlobalPropertyResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "getGlobalPropertyResponse");
+ private final static QName _CreateDBConnectionResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "createDBConnectionResponse");
+ private final static QName _GetGlobalProperty_QNAME = new QName("http://service.web.rapidanalytics.de/", "getGlobalProperty");
+ private final static QName _CheckSetup_QNAME = new QName("http://service.web.rapidanalytics.de/", "checkSetup");
+ private final static QName _CreateDBConnection_QNAME = new QName("http://service.web.rapidanalytics.de/", "createDBConnection");
+ private final static QName _SetGlobalPropertyResponse_QNAME = new QName("http://service.web.rapidanalytics.de/", "setGlobalPropertyResponse");
+ private final static QName _SetGlobalProperty_QNAME = new QName("http://service.web.rapidanalytics.de/", "setGlobalProperty");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.rapid_i.repository.wsimport.mgt
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link CheckSetupResponse }
+ *
+ */
+ public CheckSetupResponse createCheckSetupResponse() {
+ return new CheckSetupResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetGlobalPropertyResponse }
+ *
+ */
+ public GetGlobalPropertyResponse createGetGlobalPropertyResponse() {
+ return new GetGlobalPropertyResponse();
+ }
+
+ /**
+ * Create an instance of {@link CreateDBConnectionResponse }
+ *
+ */
+ public CreateDBConnectionResponse createCreateDBConnectionResponse() {
+ return new CreateDBConnectionResponse();
+ }
+
+ /**
+ * Create an instance of {@link GetGlobalProperty }
+ *
+ */
+ public GetGlobalProperty createGetGlobalProperty() {
+ return new GetGlobalProperty();
+ }
+
+ /**
+ * Create an instance of {@link CreateDBConnection }
+ *
+ */
+ public CreateDBConnection createCreateDBConnection() {
+ return new CreateDBConnection();
+ }
+
+ /**
+ * Create an instance of {@link CheckSetup }
+ *
+ */
+ public CheckSetup createCheckSetup() {
+ return new CheckSetup();
+ }
+
+ /**
+ * Create an instance of {@link SetGlobalPropertyResponse }
+ *
+ */
+ public SetGlobalPropertyResponse createSetGlobalPropertyResponse() {
+ return new SetGlobalPropertyResponse();
+ }
+
+ /**
+ * Create an instance of {@link SetGlobalProperty }
+ *
+ */
+ public SetGlobalProperty createSetGlobalProperty() {
+ return new SetGlobalProperty();
+ }
+
+ /**
+ * Create an instance of {@link Response }
+ *
+ */
+ public Response createResponse() {
+ return new Response();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link CheckSetupResponse }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://service.web.rapidanalytics.de/", name = "checkSetupResponse")
+ public JAXBElement Java class for response complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for setGlobalProperty complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ * Java class for setGlobalPropertyResponse complex type.
+ *
+ * The following schema fragment specifies the expected content contained within this class.
+ *
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation does nothing.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * The default implementation returns the result of calling {@link #visitChildren} on
+ * {@code ctx}.
+ *
+ * WARNING: This class is now deprecated. Please use the class {@link Process} instead!.
+ *
+ * This class was introduced to avoid confusing handling of operator maps and other stuff when a new
+ * experiment is created. It is also necessary for file name resolving and breakpoint handling.
+ *
+ * If you want to use RapidMiner from your own application the best way is often to create an
+ * experiment from the scratch (by adding the complete operator tree to the experiment root
+ * operator) or from a file (for example created with the GUI beforehand) and start it by invoking
+ * the {@link #run()} method.
+ *
+ * Resolves following predefined macros:
+ *
+ * Resolves following predefined macros if operator is non-null:
+ *
+ * Resolves user defined macros.
+ *
+ * Replaces following predefined macros:
+ *
+ * Resolves following predefined macros:
+ *
+ * This class was introduced to avoid confusing handling of operator maps and other stuff when a new
+ * process definition is created. It is also necessary for file name resolving and breakpoint
+ * handling.
+ *
+ * If you want to use RapidMiner from your own application the best way is often to create a process
+ * definition from scratch (by adding the complete operator tree to the process' root operator) or
+ * from a file (for example created with the GUI beforehand) and start it by invoking the
+ * {@link #run()} method.
+ *
+ * Observers can listen to changes of the associated file, repository location, and context.
+ *
+ * The process context holds some data controlling the execution of a {@link Process}. This includes
+ * connections of the input and output ports of the root operator to repository locations as well as
+ * the definition of macros.
+ *
+ * The fact that this data is defined outside the process itself is particularly useful if this
+ * process is offered as a service, so it can be adapted easily. Furthermore, this saves the process
+ * designer from defining data reading and storing operators at the beginning and at the end of the
+ * process.
+ *
+ * Note: A ProcessContext is not necessarily associate with a {@link Process}. E.g., if a process is
+ * run remotely, it does not necessarily exist on the machine that prepares the context.
+ *
+ * Since this class acts merely as a data container, it has public getter and setter methods which
+ * return references to the actual data (as opposed to immutable views). In order to trigger an
+ * update, call a setter method rather than adding to the lists, which is invisible to the process
+ * context.
+ *
+ * The data is saved as strings rather than, e.g. using {@link RepositoryLocation}s.
+ *
+ * Since this class is saved as a Lob with the ProcessExecutionParameters entity, serializability
+ * must be ensured. This is guaranteed by the fact that this class only contains {@link List}s of
+ * strings or {@link Pair}s of strings, where {@link Pair} is serializable.
+ *
+ * <complexType name="getAccessRights">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="entryLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAccessRights", propOrder = {
+ "entryLocation"
+})
+public class GetAccessRights {
+
+ protected String entryLocation;
+
+ /**
+ * Gets the value of the entryLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEntryLocation() {
+ return entryLocation;
+ }
+
+ /**
+ * Sets the value of the entryLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEntryLocation(String value) {
+ this.entryLocation = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetAccessRightsResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetAccessRightsResponse.java
new file mode 100644
index 000000000..9b1d593e3
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetAccessRightsResponse.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getAccessRightsResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}accessRights" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAccessRightsResponse", propOrder = {
+ "_return"
+})
+public class GetAccessRightsResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getAllGroupNames">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAllGroupNames")
+public class GetAllGroupNames {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetAllGroupNamesResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetAllGroupNamesResponse.java
new file mode 100644
index 000000000..b20747d7f
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetAllGroupNamesResponse.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getAllGroupNamesResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getAllGroupNamesResponse", propOrder = {
+ "_return"
+})
+public class GetAllGroupNamesResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getEntry">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="entryLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getEntry", propOrder = {
+ "entryLocation"
+})
+public class GetEntry {
+
+ protected String entryLocation;
+
+ /**
+ * Gets the value of the entryLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEntryLocation() {
+ return entryLocation;
+ }
+
+ /**
+ * Sets the value of the entryLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEntryLocation(String value) {
+ this.entryLocation = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetEntryResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetEntryResponse.java
new file mode 100644
index 000000000..7c6919ae0
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetEntryResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getEntryResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}entryResponse" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getEntryResponse", propOrder = {
+ "_return"
+})
+public class GetEntryResponse {
+
+ @XmlElement(name = "return")
+ protected EntryResponse _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link EntryResponse }
+ *
+ */
+ public EntryResponse getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link EntryResponse }
+ *
+ */
+ public void setReturn(EntryResponse value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetFolderContents.java b/src/generated/java/com/rapid_i/repository/wsimport/GetFolderContents.java
new file mode 100644
index 000000000..6a4ddb88a
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetFolderContents.java
@@ -0,0 +1,77 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getFolderContents">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="folderLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getFolderContents", propOrder = {
+ "folderLocation"
+})
+public class GetFolderContents {
+
+ protected String folderLocation;
+
+ /**
+ * Gets the value of the folderLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFolderLocation() {
+ return folderLocation;
+ }
+
+ /**
+ * Sets the value of the folderLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFolderLocation(String value) {
+ this.folderLocation = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetFolderContentsResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetFolderContentsResponse.java
new file mode 100644
index 000000000..63328046b
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetFolderContentsResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getFolderContentsResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}folderContentsResponse" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getFolderContentsResponse", propOrder = {
+ "_return"
+})
+public class GetFolderContentsResponse {
+
+ @XmlElement(name = "return")
+ protected FolderContentsResponse _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link FolderContentsResponse }
+ *
+ */
+ public FolderContentsResponse getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link FolderContentsResponse }
+ *
+ */
+ public void setReturn(FolderContentsResponse value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetFreeMemory.java b/src/generated/java/com/rapid_i/repository/wsimport/GetFreeMemory.java
new file mode 100644
index 000000000..c58ea1f98
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetFreeMemory.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getFreeMemory">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getFreeMemory")
+public class GetFreeMemory {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetFreeMemoryResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetFreeMemoryResponse.java
new file mode 100644
index 000000000..42c729cba
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetFreeMemoryResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getFreeMemoryResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getFreeMemoryResponse", propOrder = {
+ "_return"
+})
+public class GetFreeMemoryResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetInstalledPlugins.java b/src/generated/java/com/rapid_i/repository/wsimport/GetInstalledPlugins.java
new file mode 100644
index 000000000..84f9762a1
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetInstalledPlugins.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getInstalledPlugins">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getInstalledPlugins")
+public class GetInstalledPlugins {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetInstalledPluginsResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetInstalledPluginsResponse.java
new file mode 100644
index 000000000..bf8fa6cb3
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetInstalledPluginsResponse.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getInstalledPluginsResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}pluginInfo" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getInstalledPluginsResponse", propOrder = {
+ "_return"
+})
+public class GetInstalledPluginsResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getMaxMemory">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getMaxMemory")
+public class GetMaxMemory {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetMaxMemoryResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetMaxMemoryResponse.java
new file mode 100644
index 000000000..cb1c13ea0
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetMaxMemoryResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getMaxMemoryResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getMaxMemoryResponse", propOrder = {
+ "_return"
+})
+public class GetMaxMemoryResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetProcessContents.java b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessContents.java
new file mode 100644
index 000000000..dcf4a2465
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessContents.java
@@ -0,0 +1,96 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getProcessContents">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="entryLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="revisionNumber" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getProcessContents", propOrder = {
+ "entryLocation",
+ "revisionNumber"
+})
+public class GetProcessContents {
+
+ protected String entryLocation;
+ protected int revisionNumber;
+
+ /**
+ * Gets the value of the entryLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEntryLocation() {
+ return entryLocation;
+ }
+
+ /**
+ * Sets the value of the entryLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEntryLocation(String value) {
+ this.entryLocation = value;
+ }
+
+ /**
+ * Gets the value of the revisionNumber property.
+ *
+ */
+ public int getRevisionNumber() {
+ return revisionNumber;
+ }
+
+ /**
+ * Sets the value of the revisionNumber property.
+ *
+ */
+ public void setRevisionNumber(int value) {
+ this.revisionNumber = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetProcessContentsResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessContentsResponse.java
new file mode 100644
index 000000000..ce7750576
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessContentsResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getProcessContentsResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}processContentsResponse" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getProcessContentsResponse", propOrder = {
+ "_return"
+})
+public class GetProcessContentsResponse {
+
+ @XmlElement(name = "return")
+ protected ProcessContentsResponse _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link ProcessContentsResponse }
+ *
+ */
+ public ProcessContentsResponse getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ProcessContentsResponse }
+ *
+ */
+ public void setReturn(ProcessContentsResponse value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetProcessIdsForJobId.java b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessIdsForJobId.java
new file mode 100644
index 000000000..6a23428de
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessIdsForJobId.java
@@ -0,0 +1,69 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getProcessIdsForJobId">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="jobId" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getProcessIdsForJobId", propOrder = {
+ "jobId"
+})
+public class GetProcessIdsForJobId {
+
+ protected int jobId;
+
+ /**
+ * Gets the value of the jobId property.
+ *
+ */
+ public int getJobId() {
+ return jobId;
+ }
+
+ /**
+ * Sets the value of the jobId property.
+ *
+ */
+ public void setJobId(int value) {
+ this.jobId = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetProcessIdsForJobIdResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessIdsForJobIdResponse.java
new file mode 100644
index 000000000..1509f298d
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetProcessIdsForJobIdResponse.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getProcessIdsForJobIdResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getProcessIdsForJobIdResponse", propOrder = {
+ "_return"
+})
+public class GetProcessIdsForJobIdResponse {
+
+ @XmlElement(name = "return", type = Integer.class)
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getQueueInfo">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="queueName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQueueInfo", propOrder = {
+ "queueName"
+})
+public class GetQueueInfo {
+
+ protected String queueName;
+
+ /**
+ * Gets the value of the queueName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getQueueName() {
+ return queueName;
+ }
+
+ /**
+ * Sets the value of the queueName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setQueueName(String value) {
+ this.queueName = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetQueueInfoResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetQueueInfoResponse.java
new file mode 100644
index 000000000..1b98d2e06
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetQueueInfoResponse.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getQueueInfoResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}queueProperty" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQueueInfoResponse", propOrder = {
+ "_return"
+})
+public class GetQueueInfoResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getQueueNames">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQueueNames")
+public class GetQueueNames {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetQueueNamesResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetQueueNamesResponse.java
new file mode 100644
index 000000000..19a51bf39
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetQueueNamesResponse.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getQueueNamesResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQueueNamesResponse", propOrder = {
+ "_return"
+})
+public class GetQueueNamesResponse {
+
+ @XmlElement(name = "return")
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getQueueState">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="queueName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQueueState", propOrder = {
+ "queueName"
+})
+public class GetQueueState {
+
+ protected String queueName;
+
+ /**
+ * Gets the value of the queueName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getQueueName() {
+ return queueName;
+ }
+
+ /**
+ * Sets the value of the queueName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setQueueName(String value) {
+ this.queueName = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetQueueStateResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetQueueStateResponse.java
new file mode 100644
index 000000000..d62dc5631
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetQueueStateResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getQueueStateResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}queueState" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getQueueStateResponse", propOrder = {
+ "_return"
+})
+public class GetQueueStateResponse {
+
+ @XmlElement(name = "return")
+ protected QueueState _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link QueueState }
+ *
+ */
+ public QueueState getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link QueueState }
+ *
+ */
+ public void setReturn(QueueState value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcesses.java b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcesses.java
new file mode 100644
index 000000000..4be38e5a7
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcesses.java
@@ -0,0 +1,80 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ *
+ * <complexType name="getRunningProcesses">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="since" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getRunningProcesses", propOrder = {
+ "since"
+})
+public class GetRunningProcesses {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar since;
+
+ /**
+ * Gets the value of the since property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getSince() {
+ return since;
+ }
+
+ /**
+ * Sets the value of the since property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setSince(XMLGregorianCalendar value) {
+ this.since = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesInfo.java b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesInfo.java
new file mode 100644
index 000000000..9a2c0b8fc
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesInfo.java
@@ -0,0 +1,69 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getRunningProcessesInfo">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="scheduledProcessId" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getRunningProcessesInfo", propOrder = {
+ "scheduledProcessId"
+})
+public class GetRunningProcessesInfo {
+
+ protected int scheduledProcessId;
+
+ /**
+ * Gets the value of the scheduledProcessId property.
+ *
+ */
+ public int getScheduledProcessId() {
+ return scheduledProcessId;
+ }
+
+ /**
+ * Sets the value of the scheduledProcessId property.
+ *
+ */
+ public void setScheduledProcessId(int value) {
+ this.scheduledProcessId = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesInfoResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesInfoResponse.java
new file mode 100644
index 000000000..fc9e1a331
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesInfoResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getRunningProcessesInfoResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}processResponse" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getRunningProcessesInfoResponse", propOrder = {
+ "_return"
+})
+public class GetRunningProcessesInfoResponse {
+
+ @XmlElement(name = "return")
+ protected ProcessResponse _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link ProcessResponse }
+ *
+ */
+ public ProcessResponse getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ProcessResponse }
+ *
+ */
+ public void setReturn(ProcessResponse value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesResponse.java
new file mode 100644
index 000000000..8af1abfd2
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetRunningProcessesResponse.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="getRunningProcessesResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getRunningProcessesResponse", propOrder = {
+ "_return"
+})
+public class GetRunningProcessesResponse {
+
+ @XmlElement(name = "return", type = Integer.class)
+ protected Listset
method for the return property.
+ *
+ *
+ * getReturn().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="getSystemLoadAverage">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getSystemLoadAverage")
+public class GetSystemLoadAverage {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetSystemLoadAverageResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetSystemLoadAverageResponse.java
new file mode 100644
index 000000000..135d52b51
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetSystemLoadAverageResponse.java
@@ -0,0 +1,71 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getSystemLoadAverageResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}double"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getSystemLoadAverageResponse", propOrder = {
+ "_return"
+})
+public class GetSystemLoadAverageResponse {
+
+ @XmlElement(name = "return")
+ protected double _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ */
+ public double getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ */
+ public void setReturn(double value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetTotalMemory.java b/src/generated/java/com/rapid_i/repository/wsimport/GetTotalMemory.java
new file mode 100644
index 000000000..96c5f20cc
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetTotalMemory.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getTotalMemory">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getTotalMemory")
+public class GetTotalMemory {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetTotalMemoryResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetTotalMemoryResponse.java
new file mode 100644
index 000000000..70f9a0d49
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetTotalMemoryResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getTotalMemoryResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getTotalMemoryResponse", propOrder = {
+ "_return"
+})
+public class GetTotalMemoryResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetUpSince.java b/src/generated/java/com/rapid_i/repository/wsimport/GetUpSince.java
new file mode 100644
index 000000000..9107feb56
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetUpSince.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getUpSince">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getUpSince")
+public class GetUpSince {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetUpSinceResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetUpSinceResponse.java
new file mode 100644
index 000000000..a1d30ca29
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetUpSinceResponse.java
@@ -0,0 +1,82 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ *
+ * <complexType name="getUpSinceResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getUpSinceResponse", propOrder = {
+ "_return"
+})
+public class GetUpSinceResponse {
+
+ @XmlElement(name = "return")
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setReturn(XMLGregorianCalendar value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetVersionNumber.java b/src/generated/java/com/rapid_i/repository/wsimport/GetVersionNumber.java
new file mode 100644
index 000000000..a473933da
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetVersionNumber.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVersionNumber">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVersionNumber")
+public class GetVersionNumber {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/GetVersionNumberResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/GetVersionNumberResponse.java
new file mode 100644
index 000000000..3b72afba0
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/GetVersionNumberResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getVersionNumberResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getVersionNumberResponse", propOrder = {
+ "_return"
+})
+public class GetVersionNumberResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/MacroDefinition.java b/src/generated/java/com/rapid_i/repository/wsimport/MacroDefinition.java
new file mode 100644
index 000000000..bf365b2bf
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/MacroDefinition.java
@@ -0,0 +1,104 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="macroDefinition">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "macroDefinition", propOrder = {
+ "key",
+ "value"
+})
+public class MacroDefinition {
+
+ protected String key;
+ protected String value;
+
+ /**
+ * Gets the value of the key property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKey() {
+ return key;
+ }
+
+ /**
+ * Sets the value of the key property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKey(String value) {
+ this.key = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/MakeFolder.java b/src/generated/java/com/rapid_i/repository/wsimport/MakeFolder.java
new file mode 100644
index 000000000..7653b0b70
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/MakeFolder.java
@@ -0,0 +1,104 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="makeFolder">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="parentLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="subfolderName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "makeFolder", propOrder = {
+ "parentLocation",
+ "subfolderName"
+})
+public class MakeFolder {
+
+ protected String parentLocation;
+ protected String subfolderName;
+
+ /**
+ * Gets the value of the parentLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getParentLocation() {
+ return parentLocation;
+ }
+
+ /**
+ * Sets the value of the parentLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setParentLocation(String value) {
+ this.parentLocation = value;
+ }
+
+ /**
+ * Gets the value of the subfolderName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSubfolderName() {
+ return subfolderName;
+ }
+
+ /**
+ * Sets the value of the subfolderName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSubfolderName(String value) {
+ this.subfolderName = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/MakeFolderResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/MakeFolderResponse.java
new file mode 100644
index 000000000..588654f91
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/MakeFolderResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="makeFolderResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}entryResponse" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "makeFolderResponse", propOrder = {
+ "_return"
+})
+public class MakeFolderResponse {
+
+ @XmlElement(name = "return")
+ protected EntryResponse _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link EntryResponse }
+ *
+ */
+ public EntryResponse getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link EntryResponse }
+ *
+ */
+ public void setReturn(EntryResponse value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/Move.java b/src/generated/java/com/rapid_i/repository/wsimport/Move.java
new file mode 100644
index 000000000..761210503
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/Move.java
@@ -0,0 +1,104 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="move">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="newParentFolder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "move", propOrder = {
+ "location",
+ "newParentFolder"
+})
+public class Move {
+
+ protected String location;
+ protected String newParentFolder;
+
+ /**
+ * Gets the value of the location property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLocation() {
+ return location;
+ }
+
+ /**
+ * Sets the value of the location property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLocation(String value) {
+ this.location = value;
+ }
+
+ /**
+ * Gets the value of the newParentFolder property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getNewParentFolder() {
+ return newParentFolder;
+ }
+
+ /**
+ * Sets the value of the newParentFolder property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setNewParentFolder(String value) {
+ this.newParentFolder = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/MoveResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/MoveResponse.java
new file mode 100644
index 000000000..ed46e75b9
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/MoveResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="moveResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}entryResponse" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "moveResponse", propOrder = {
+ "_return"
+})
+public class MoveResponse {
+
+ @XmlElement(name = "return")
+ protected EntryResponse _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link EntryResponse }
+ *
+ */
+ public EntryResponse getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link EntryResponse }
+ *
+ */
+ public void setReturn(EntryResponse value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ObjectFactory.java b/src/generated/java/com/rapid_i/repository/wsimport/ObjectFactory.java
new file mode 100644
index 000000000..228b2ba48
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/ObjectFactory.java
@@ -0,0 +1,560 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the com.rapid_i.repository.wsimport package.
+ *
+ * <complexType name="pluginInfo">
+ * <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 name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "pluginInfo", propOrder = {
+ "name",
+ "version"
+})
+public class PluginInfo {
+
+ protected String name;
+ protected String version;
+
+ /**
+ * 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 version property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getVersion() {
+ return version;
+ }
+
+ /**
+ * Sets the value of the version property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setVersion(String value) {
+ this.version = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ProcessContentsResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/ProcessContentsResponse.java
new file mode 100644
index 000000000..97ad5c763
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/ProcessContentsResponse.java
@@ -0,0 +1,106 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="processContentsResponse">
+ * <complexContent>
+ * <extension base="{http://service.web.rapidanalytics.de/}response">
+ * <sequence>
+ * <element name="contents" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </extension>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "processContentsResponse", propOrder = {
+ "contents",
+ "location"
+})
+public class ProcessContentsResponse
+ extends Response
+{
+
+ protected String contents;
+ protected String location;
+
+ /**
+ * Gets the value of the contents property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getContents() {
+ return contents;
+ }
+
+ /**
+ * Sets the value of the contents property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setContents(String value) {
+ this.contents = value;
+ }
+
+ /**
+ * Gets the value of the location property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLocation() {
+ return location;
+ }
+
+ /**
+ * Sets the value of the location property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLocation(String value) {
+ this.location = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ProcessContextWrapper.java b/src/generated/java/com/rapid_i/repository/wsimport/ProcessContextWrapper.java
new file mode 100644
index 000000000..4b4cb36fa
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/ProcessContextWrapper.java
@@ -0,0 +1,152 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="processContextWrapper">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="inputRepositoryLocations" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="macros" type="{http://service.web.rapidanalytics.de/}macroDefinition" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="outputRepositoryLocations" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "processContextWrapper", propOrder = {
+ "inputRepositoryLocations",
+ "macros",
+ "outputRepositoryLocations"
+})
+public class ProcessContextWrapper {
+
+ @XmlElement(nillable = true)
+ protected Listset
method for the inputRepositoryLocations property.
+ *
+ *
+ * getInputRepositoryLocations().add(newItem);
+ *
+ *
+ *
+ * set
method for the macros property.
+ *
+ *
+ * getMacros().add(newItem);
+ *
+ *
+ *
+ * set
method for the outputRepositoryLocations property.
+ *
+ *
+ * getOutputRepositoryLocations().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="processResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="completionTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="exception" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="outputLocations" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="startTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="trace" type="{http://service.web.rapidanalytics.de/}processStackTrace" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "processResponse", propOrder = {
+ "completionTime",
+ "exception",
+ "id",
+ "outputLocations",
+ "processLocation",
+ "startTime",
+ "state",
+ "trace"
+})
+public class ProcessResponse {
+
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar completionTime;
+ protected String exception;
+ protected int id;
+ @XmlElement(nillable = true)
+ protected Listset
method for the outputLocations property.
+ *
+ *
+ * getOutputLocations().add(newItem);
+ *
+ *
+ *
+ * features
parameter will have their default values.
+ * @return
+ * returns ProcessService13
+ */
+ @WebEndpoint(name = "ProcessService_1_3Port")
+ public ProcessService13 getProcessService13Port(WebServiceFeature... features) {
+ return super.getPort(new QName("http://service.web.rapidanalytics.de/", "ProcessService_1_3Port"), ProcessService13.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (PROCESSSERVICE13_EXCEPTION!= null) {
+ throw PROCESSSERVICE13_EXCEPTION;
+ }
+ return PROCESSSERVICE13_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ProcessService_Service.java b/src/generated/java/com/rapid_i/repository/wsimport/ProcessService_Service.java
new file mode 100644
index 000000000..84324ec8d
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/ProcessService_Service.java
@@ -0,0 +1,111 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import javax.xml.ws.WebEndpoint;
+import javax.xml.ws.WebServiceClient;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.WebServiceFeature;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.8
+ * Generated source version: 2.2
+ *
+ */
+@WebServiceClient(name = "ProcessService", targetNamespace = "http://service.web.rapidanalytics.de/", wsdlLocation = "http://localhost:8080/RAWS/ProcessService?wsdl")
+public class ProcessService_Service
+ extends Service
+{
+
+ private final static URL PROCESSSERVICE_WSDL_LOCATION;
+ private final static WebServiceException PROCESSSERVICE_EXCEPTION;
+ private final static QName PROCESSSERVICE_QNAME = new QName("http://service.web.rapidanalytics.de/", "ProcessService");
+
+ static {
+ URL url = null;
+ WebServiceException e = null;
+ try {
+ url = new URL("http://localhost:8080/RAWS/ProcessService?wsdl");
+ } catch (MalformedURLException ex) {
+ e = new WebServiceException(ex);
+ }
+ PROCESSSERVICE_WSDL_LOCATION = url;
+ PROCESSSERVICE_EXCEPTION = e;
+ }
+
+ public ProcessService_Service() {
+ super(__getWsdlLocation(), PROCESSSERVICE_QNAME);
+ }
+
+ public ProcessService_Service(WebServiceFeature... features) {
+ super(__getWsdlLocation(), PROCESSSERVICE_QNAME, features);
+ }
+
+ public ProcessService_Service(URL wsdlLocation) {
+ super(wsdlLocation, PROCESSSERVICE_QNAME);
+ }
+
+ public ProcessService_Service(URL wsdlLocation, WebServiceFeature... features) {
+ super(wsdlLocation, PROCESSSERVICE_QNAME, features);
+ }
+
+ public ProcessService_Service(URL wsdlLocation, QName serviceName) {
+ super(wsdlLocation, serviceName);
+ }
+
+ public ProcessService_Service(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
+ super(wsdlLocation, serviceName, features);
+ }
+
+ /**
+ *
+ * @return
+ * returns ProcessService
+ */
+ @WebEndpoint(name = "ProcessServicePort")
+ public ProcessService getProcessServicePort() {
+ return super.getPort(new QName("http://service.web.rapidanalytics.de/", "ProcessServicePort"), ProcessService.class);
+ }
+
+ /**
+ *
+ * @param features
+ * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features
parameter will have their default values.
+ * @return
+ * returns ProcessService
+ */
+ @WebEndpoint(name = "ProcessServicePort")
+ public ProcessService getProcessServicePort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://service.web.rapidanalytics.de/", "ProcessServicePort"), ProcessService.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (PROCESSSERVICE_EXCEPTION!= null) {
+ throw PROCESSSERVICE_EXCEPTION;
+ }
+ return PROCESSSERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/ProcessStackTrace.java b/src/generated/java/com/rapid_i/repository/wsimport/ProcessStackTrace.java
new file mode 100644
index 000000000..f2865e4d4
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/ProcessStackTrace.java
@@ -0,0 +1,86 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="processStackTrace">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="elements" type="{http://service.web.rapidanalytics.de/}processStackTraceElement" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "processStackTrace", propOrder = {
+ "elements"
+})
+public class ProcessStackTrace {
+
+ @XmlElement(nillable = true)
+ protected Listset
method for the elements property.
+ *
+ *
+ * getElements().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="processStackTraceElement">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="applyCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="executionTime" type="{http://www.w3.org/2001/XMLSchema}long"/>
+ * <element name="operatorName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "processStackTraceElement", propOrder = {
+ "applyCount",
+ "executionTime",
+ "operatorName"
+})
+public class ProcessStackTraceElement {
+
+ protected int applyCount;
+ protected long executionTime;
+ protected String operatorName;
+
+ /**
+ * Gets the value of the applyCount property.
+ *
+ */
+ public int getApplyCount() {
+ return applyCount;
+ }
+
+ /**
+ * Sets the value of the applyCount property.
+ *
+ */
+ public void setApplyCount(int value) {
+ this.applyCount = value;
+ }
+
+ /**
+ * Gets the value of the executionTime property.
+ *
+ */
+ public long getExecutionTime() {
+ return executionTime;
+ }
+
+ /**
+ * Sets the value of the executionTime property.
+ *
+ */
+ public void setExecutionTime(long value) {
+ this.executionTime = value;
+ }
+
+ /**
+ * Gets the value of the operatorName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getOperatorName() {
+ return operatorName;
+ }
+
+ /**
+ * Sets the value of the operatorName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setOperatorName(String value) {
+ this.operatorName = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/QueueProperty.java b/src/generated/java/com/rapid_i/repository/wsimport/QueueProperty.java
new file mode 100644
index 000000000..9f82d0b08
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/QueueProperty.java
@@ -0,0 +1,104 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="queueProperty">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "queueProperty", propOrder = {
+ "key",
+ "value"
+})
+public class QueueProperty {
+
+ protected String key;
+ protected String value;
+
+ /**
+ * Gets the value of the key property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKey() {
+ return key;
+ }
+
+ /**
+ * Sets the value of the key property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKey(String value) {
+ this.key = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/QueueState.java b/src/generated/java/com/rapid_i/repository/wsimport/QueueState.java
new file mode 100644
index 000000000..b7cdba717
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/QueueState.java
@@ -0,0 +1,88 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="queueState">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="backlog" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * <element name="numberOfRunningProcesses" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "queueState", propOrder = {
+ "backlog",
+ "numberOfRunningProcesses"
+})
+public class QueueState {
+
+ protected int backlog;
+ protected int numberOfRunningProcesses;
+
+ /**
+ * Gets the value of the backlog property.
+ *
+ */
+ public int getBacklog() {
+ return backlog;
+ }
+
+ /**
+ * Sets the value of the backlog property.
+ *
+ */
+ public void setBacklog(int value) {
+ this.backlog = value;
+ }
+
+ /**
+ * Gets the value of the numberOfRunningProcesses property.
+ *
+ */
+ public int getNumberOfRunningProcesses() {
+ return numberOfRunningProcesses;
+ }
+
+ /**
+ * Sets the value of the numberOfRunningProcesses property.
+ *
+ */
+ public void setNumberOfRunningProcesses(int value) {
+ this.numberOfRunningProcesses = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/RAInfoService.java b/src/generated/java/com/rapid_i/repository/wsimport/RAInfoService.java
new file mode 100644
index 000000000..a89b6cb37
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/RAInfoService.java
@@ -0,0 +1,121 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.datatype.XMLGregorianCalendar;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.8
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "RAInfoService", targetNamespace = "http://service.web.rapidanalytics.de/")
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface RAInfoService {
+
+
+ /**
+ *
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getFreeMemory", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetFreeMemory")
+ @ResponseWrapper(localName = "getFreeMemoryResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetFreeMemoryResponse")
+ public String getFreeMemory();
+
+ /**
+ *
+ * @return
+ * returns double
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getSystemLoadAverage", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetSystemLoadAverage")
+ @ResponseWrapper(localName = "getSystemLoadAverageResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetSystemLoadAverageResponse")
+ public double getSystemLoadAverage();
+
+ /**
+ *
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getTotalMemory", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetTotalMemory")
+ @ResponseWrapper(localName = "getTotalMemoryResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetTotalMemoryResponse")
+ public String getTotalMemory();
+
+ /**
+ *
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getMaxMemory", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetMaxMemory")
+ @ResponseWrapper(localName = "getMaxMemoryResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetMaxMemoryResponse")
+ public String getMaxMemory();
+
+ /**
+ *
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getVersionNumber", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetVersionNumber")
+ @ResponseWrapper(localName = "getVersionNumberResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetVersionNumberResponse")
+ public String getVersionNumber();
+
+ /**
+ *
+ * @return
+ * returns javax.xml.datatype.XMLGregorianCalendar
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getUpSince", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetUpSince")
+ @ResponseWrapper(localName = "getUpSinceResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetUpSinceResponse")
+ public XMLGregorianCalendar getUpSince();
+
+ /**
+ *
+ * @return
+ * returns java.util.Listfeatures
parameter will have their default values.
+ * @return
+ * returns RAInfoService
+ */
+ @WebEndpoint(name = "RAInfoServicePort")
+ public RAInfoService getRAInfoServicePort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://service.web.rapidanalytics.de/", "RAInfoServicePort"), RAInfoService.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (RAINFOSERVICE_EXCEPTION!= null) {
+ throw RAINFOSERVICE_EXCEPTION;
+ }
+ return RAINFOSERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/Rename.java b/src/generated/java/com/rapid_i/repository/wsimport/Rename.java
new file mode 100644
index 000000000..dacc00cb1
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/Rename.java
@@ -0,0 +1,104 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="rename">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="newName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "rename", propOrder = {
+ "location",
+ "newName"
+})
+public class Rename {
+
+ protected String location;
+ protected String newName;
+
+ /**
+ * Gets the value of the location property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLocation() {
+ return location;
+ }
+
+ /**
+ * Sets the value of the location property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLocation(String value) {
+ this.location = value;
+ }
+
+ /**
+ * Gets the value of the newName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getNewName() {
+ return newName;
+ }
+
+ /**
+ * Sets the value of the newName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setNewName(String value) {
+ this.newName = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/RenameResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/RenameResponse.java
new file mode 100644
index 000000000..fa4d2e50d
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/RenameResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="renameResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}entryResponse" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "renameResponse", propOrder = {
+ "_return"
+})
+public class RenameResponse {
+
+ @XmlElement(name = "return")
+ protected EntryResponse _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link EntryResponse }
+ *
+ */
+ public EntryResponse getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link EntryResponse }
+ *
+ */
+ public void setReturn(EntryResponse value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/RepositoryService.java b/src/generated/java/com/rapid_i/repository/wsimport/RepositoryService.java
new file mode 100644
index 000000000..d43ec701b
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/RepositoryService.java
@@ -0,0 +1,248 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.datatype.XMLGregorianCalendar;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.8
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "RepositoryService", targetNamespace = "http://service.web.rapidanalytics.de/")
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface RepositoryService {
+
+
+ /**
+ *
+ * @return
+ * returns java.util.Listfeatures
parameter will have their default values.
+ * @return
+ * returns RepositoryService
+ */
+ @WebEndpoint(name = "RepositoryServicePort")
+ public RepositoryService getRepositoryServicePort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://service.web.rapidanalytics.de/", "RepositoryServicePort"), RepositoryService.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (REPOSITORYSERVICE_EXCEPTION!= null) {
+ throw REPOSITORYSERVICE_EXCEPTION;
+ }
+ return REPOSITORYSERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/Response.java b/src/generated/java/com/rapid_i/repository/wsimport/Response.java
new file mode 100644
index 000000000..0b3416b15
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/Response.java
@@ -0,0 +1,102 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="response">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="status" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "response", propOrder = {
+ "errorMessage",
+ "status"
+})
+@XmlSeeAlso({
+ EntryResponse.class,
+ ProcessContentsResponse.class,
+ FolderContentsResponse.class
+})
+public class Response {
+
+ protected String errorMessage;
+ protected int status;
+
+ /**
+ * Gets the value of the errorMessage property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getErrorMessage() {
+ return errorMessage;
+ }
+
+ /**
+ * Sets the value of the errorMessage property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setErrorMessage(String value) {
+ this.errorMessage = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ */
+ public int getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ */
+ public void setStatus(int value) {
+ this.status = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/SetAccessRights.java b/src/generated/java/com/rapid_i/repository/wsimport/SetAccessRights.java
new file mode 100644
index 000000000..a04088467
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/SetAccessRights.java
@@ -0,0 +1,111 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="setAccessRights">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="entryLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="accessRights" type="{http://service.web.rapidanalytics.de/}accessRights" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "setAccessRights", propOrder = {
+ "entryLocation",
+ "accessRights"
+})
+public class SetAccessRights {
+
+ protected String entryLocation;
+ protected Listset
method for the accessRights property.
+ *
+ *
+ * getAccessRights().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="setAccessRightsResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}response" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "setAccessRightsResponse", propOrder = {
+ "_return"
+})
+public class SetAccessRightsResponse {
+
+ @XmlElement(name = "return")
+ protected Response _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Response }
+ *
+ */
+ public Response getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Response }
+ *
+ */
+ public void setReturn(Response value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/StartNewRevision.java b/src/generated/java/com/rapid_i/repository/wsimport/StartNewRevision.java
new file mode 100644
index 000000000..c8a0067c0
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/StartNewRevision.java
@@ -0,0 +1,77 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="startNewRevision">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="processLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "startNewRevision", propOrder = {
+ "processLocation"
+})
+public class StartNewRevision {
+
+ protected String processLocation;
+
+ /**
+ * Gets the value of the processLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getProcessLocation() {
+ return processLocation;
+ }
+
+ /**
+ * Sets the value of the processLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProcessLocation(String value) {
+ this.processLocation = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/StartNewRevisionResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/StartNewRevisionResponse.java
new file mode 100644
index 000000000..eea4a206c
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/StartNewRevisionResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="startNewRevisionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}response" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "startNewRevisionResponse", propOrder = {
+ "_return"
+})
+public class StartNewRevisionResponse {
+
+ @XmlElement(name = "return")
+ protected Response _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Response }
+ *
+ */
+ public Response getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Response }
+ *
+ */
+ public void setReturn(Response value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/StopProcess.java b/src/generated/java/com/rapid_i/repository/wsimport/StopProcess.java
new file mode 100644
index 000000000..f862f0aff
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/StopProcess.java
@@ -0,0 +1,69 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="stopProcess">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="scheduledProcessId" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "stopProcess", propOrder = {
+ "scheduledProcessId"
+})
+public class StopProcess {
+
+ protected int scheduledProcessId;
+
+ /**
+ * Gets the value of the scheduledProcessId property.
+ *
+ */
+ public int getScheduledProcessId() {
+ return scheduledProcessId;
+ }
+
+ /**
+ * Sets the value of the scheduledProcessId property.
+ *
+ */
+ public void setScheduledProcessId(int value) {
+ this.scheduledProcessId = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/StopProcessResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/StopProcessResponse.java
new file mode 100644
index 000000000..a727a166d
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/StopProcessResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="stopProcessResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}response" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "stopProcessResponse", propOrder = {
+ "_return"
+})
+public class StopProcessResponse {
+
+ @XmlElement(name = "return")
+ protected Response _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Response }
+ *
+ */
+ public Response getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Response }
+ *
+ */
+ public void setReturn(Response value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/StoreProcess.java b/src/generated/java/com/rapid_i/repository/wsimport/StoreProcess.java
new file mode 100644
index 000000000..498de27a7
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/StoreProcess.java
@@ -0,0 +1,134 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ *
+ * <complexType name="storeProcess">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="entryLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="processXML" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="lastTimestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "storeProcess", propOrder = {
+ "entryLocation",
+ "processXML",
+ "lastTimestamp"
+})
+public class StoreProcess {
+
+ protected String entryLocation;
+ protected String processXML;
+ @XmlSchemaType(name = "dateTime")
+ protected XMLGregorianCalendar lastTimestamp;
+
+ /**
+ * Gets the value of the entryLocation property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEntryLocation() {
+ return entryLocation;
+ }
+
+ /**
+ * Sets the value of the entryLocation property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEntryLocation(String value) {
+ this.entryLocation = value;
+ }
+
+ /**
+ * Gets the value of the processXML property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getProcessXML() {
+ return processXML;
+ }
+
+ /**
+ * Sets the value of the processXML property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProcessXML(String value) {
+ this.processXML = value;
+ }
+
+ /**
+ * Gets the value of the lastTimestamp property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getLastTimestamp() {
+ return lastTimestamp;
+ }
+
+ /**
+ * Sets the value of the lastTimestamp property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setLastTimestamp(XMLGregorianCalendar value) {
+ this.lastTimestamp = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/StoreProcessResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/StoreProcessResponse.java
new file mode 100644
index 000000000..160a71d45
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/StoreProcessResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="storeProcessResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}response" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "storeProcessResponse", propOrder = {
+ "_return"
+})
+public class StoreProcessResponse {
+
+ @XmlElement(name = "return")
+ protected Response _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Response }
+ *
+ */
+ public Response getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Response }
+ *
+ */
+ public void setReturn(Response value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/CheckSetup.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/CheckSetup.java
new file mode 100644
index 000000000..f894fdd77
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/CheckSetup.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="checkSetup">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "checkSetup")
+public class CheckSetup {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/CheckSetupResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/CheckSetupResponse.java
new file mode 100644
index 000000000..566035f2e
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/CheckSetupResponse.java
@@ -0,0 +1,71 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="checkSetupResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "checkSetupResponse", propOrder = {
+ "_return"
+})
+public class CheckSetupResponse {
+
+ @XmlElement(name = "return")
+ protected boolean _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ */
+ public boolean isReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ */
+ public void setReturn(boolean value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/CreateDBConnection.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/CreateDBConnection.java
new file mode 100644
index 000000000..a4627406e
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/CreateDBConnection.java
@@ -0,0 +1,273 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+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.XmlType;
+
+
+/**
+ *
+ * <complexType name="createDBConnection">
+ * <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 name="host" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="port" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="user" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="pwd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="system" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="permittedGroups" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createDBConnection", propOrder = {
+ "name",
+ "host",
+ "port",
+ "user",
+ "pwd",
+ "schema",
+ "system",
+ "permittedGroups"
+})
+public class CreateDBConnection {
+
+ protected String name;
+ protected String host;
+ protected String port;
+ protected String user;
+ protected String pwd;
+ protected String schema;
+ protected String system;
+ protected Listset
method for the permittedGroups property.
+ *
+ *
+ * getPermittedGroups().add(newItem);
+ *
+ *
+ *
+ *
+ * <complexType name="createDBConnectionResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://service.web.rapidanalytics.de/}response" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "createDBConnectionResponse", propOrder = {
+ "_return"
+})
+public class CreateDBConnectionResponse {
+
+ @XmlElement(name = "return")
+ protected Response _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link Response }
+ *
+ */
+ public Response getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Response }
+ *
+ */
+ public void setReturn(Response value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/GetGlobalProperty.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/GetGlobalProperty.java
new file mode 100644
index 000000000..459bbc0b7
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/GetGlobalProperty.java
@@ -0,0 +1,77 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getGlobalProperty">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getGlobalProperty", propOrder = {
+ "key"
+})
+public class GetGlobalProperty {
+
+ protected String key;
+
+ /**
+ * Gets the value of the key property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKey() {
+ return key;
+ }
+
+ /**
+ * Sets the value of the key property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKey(String value) {
+ this.key = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/GetGlobalPropertyResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/GetGlobalPropertyResponse.java
new file mode 100644
index 000000000..a7762e77e
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/GetGlobalPropertyResponse.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="getGlobalPropertyResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "getGlobalPropertyResponse", propOrder = {
+ "_return"
+})
+public class GetGlobalPropertyResponse {
+
+ @XmlElement(name = "return")
+ protected String _return;
+
+ /**
+ * Gets the value of the return property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReturn() {
+ return _return;
+ }
+
+ /**
+ * Sets the value of the return property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReturn(String value) {
+ this._return = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/ManagementService.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/ManagementService.java
new file mode 100644
index 000000000..14a629633
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/ManagementService.java
@@ -0,0 +1,118 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import java.util.List;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebResult;
+import javax.jws.WebService;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.ws.RequestWrapper;
+import javax.xml.ws.ResponseWrapper;
+
+
+/**
+ * This class was generated by the JAX-WS RI.
+ * JAX-WS RI 2.2.8
+ * Generated source version: 2.2
+ *
+ */
+@WebService(name = "ManagementService", targetNamespace = "http://service.web.rapidanalytics.de/")
+@XmlSeeAlso({
+ ObjectFactory.class
+})
+public interface ManagementService {
+
+
+ /**
+ *
+ * @return
+ * returns boolean
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "checkSetup", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.CheckSetup")
+ @ResponseWrapper(localName = "checkSetupResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.CheckSetupResponse")
+ public boolean checkSetup();
+
+ /**
+ *
+ * @param key
+ * @return
+ * returns java.lang.String
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "getGlobalProperty", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.GetGlobalProperty")
+ @ResponseWrapper(localName = "getGlobalPropertyResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.GetGlobalPropertyResponse")
+ public String getGlobalProperty(
+ @WebParam(name = "key", targetNamespace = "")
+ String key);
+
+ /**
+ *
+ * @param value
+ * @param key
+ */
+ @WebMethod
+ @RequestWrapper(localName = "setGlobalProperty", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.SetGlobalProperty")
+ @ResponseWrapper(localName = "setGlobalPropertyResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.SetGlobalPropertyResponse")
+ public void setGlobalProperty(
+ @WebParam(name = "key", targetNamespace = "")
+ String key,
+ @WebParam(name = "value", targetNamespace = "")
+ String value);
+
+ /**
+ *
+ * @param schema
+ * @param port
+ * @param system
+ * @param pwd
+ * @param host
+ * @param permittedGroups
+ * @param name
+ * @param user
+ * @return
+ * returns com.rapid_i.repository.wsimport.mgt.Response
+ */
+ @WebMethod
+ @WebResult(targetNamespace = "")
+ @RequestWrapper(localName = "createDBConnection", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.CreateDBConnection")
+ @ResponseWrapper(localName = "createDBConnectionResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.CreateDBConnectionResponse")
+ public Response createDBConnection(
+ @WebParam(name = "name", targetNamespace = "")
+ String name,
+ @WebParam(name = "host", targetNamespace = "")
+ String host,
+ @WebParam(name = "port", targetNamespace = "")
+ String port,
+ @WebParam(name = "user", targetNamespace = "")
+ String user,
+ @WebParam(name = "pwd", targetNamespace = "")
+ String pwd,
+ @WebParam(name = "schema", targetNamespace = "")
+ String schema,
+ @WebParam(name = "system", targetNamespace = "")
+ String system,
+ @WebParam(name = "permittedGroups", targetNamespace = "")
+ Listfeatures
parameter will have their default values.
+ * @return
+ * returns ManagementService
+ */
+ @WebEndpoint(name = "ManagementServicePort")
+ public ManagementService getManagementServicePort(WebServiceFeature... features) {
+ return super.getPort(new QName("http://service.web.rapidanalytics.de/", "ManagementServicePort"), ManagementService.class, features);
+ }
+
+ private static URL __getWsdlLocation() {
+ if (MANAGEMENTSERVICESERVICE_EXCEPTION!= null) {
+ throw MANAGEMENTSERVICESERVICE_EXCEPTION;
+ }
+ return MANAGEMENTSERVICESERVICE_WSDL_LOCATION;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/ObjectFactory.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/ObjectFactory.java
new file mode 100644
index 000000000..391f65335
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/ObjectFactory.java
@@ -0,0 +1,204 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the com.rapid_i.repository.wsimport.mgt package.
+ *
+ * <complexType name="response">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="status" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "response", propOrder = {
+ "errorMessage",
+ "status"
+})
+public class Response {
+
+ protected String errorMessage;
+ protected int status;
+
+ /**
+ * Gets the value of the errorMessage property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getErrorMessage() {
+ return errorMessage;
+ }
+
+ /**
+ * Sets the value of the errorMessage property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setErrorMessage(String value) {
+ this.errorMessage = value;
+ }
+
+ /**
+ * Gets the value of the status property.
+ *
+ */
+ public int getStatus() {
+ return status;
+ }
+
+ /**
+ * Sets the value of the status property.
+ *
+ */
+ public void setStatus(int value) {
+ this.status = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/SetGlobalProperty.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/SetGlobalProperty.java
new file mode 100644
index 000000000..1af18d872
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/SetGlobalProperty.java
@@ -0,0 +1,104 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="setGlobalProperty">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "setGlobalProperty", propOrder = {
+ "key",
+ "value"
+})
+public class SetGlobalProperty {
+
+ protected String key;
+ protected String value;
+
+ /**
+ * Gets the value of the key property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getKey() {
+ return key;
+ }
+
+ /**
+ * Sets the value of the key property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setKey(String value) {
+ this.key = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/SetGlobalPropertyResponse.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/SetGlobalPropertyResponse.java
new file mode 100644
index 000000000..661c3fe60
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/SetGlobalPropertyResponse.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapid_i.repository.wsimport.mgt;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="setGlobalPropertyResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "setGlobalPropertyResponse")
+public class SetGlobalPropertyResponse {
+
+
+}
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/mgt/package-info.java b/src/generated/java/com/rapid_i/repository/wsimport/mgt/package-info.java
new file mode 100644
index 000000000..e1fdd25b2
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/mgt/package-info.java
@@ -0,0 +1,20 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://service.web.rapidanalytics.de/")
+package com.rapid_i.repository.wsimport.mgt;
diff --git a/src/generated/java/com/rapid_i/repository/wsimport/package-info.java b/src/generated/java/com/rapid_i/repository/wsimport/package-info.java
new file mode 100644
index 000000000..e9d5e359e
--- /dev/null
+++ b/src/generated/java/com/rapid_i/repository/wsimport/package-info.java
@@ -0,0 +1,20 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://service.web.rapidanalytics.de/")
+package com.rapid_i.repository.wsimport;
diff --git a/src/generated/java/com/rapidminer/tools/expression/internal/antlr/FunctionExpressionLexer.java b/src/generated/java/com/rapidminer/tools/expression/internal/antlr/FunctionExpressionLexer.java
new file mode 100644
index 000000000..6e1507d54
--- /dev/null
+++ b/src/generated/java/com/rapidminer/tools/expression/internal/antlr/FunctionExpressionLexer.java
@@ -0,0 +1,218 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+// Generated from FunctionExpressionLexer.g4 by ANTLR 4.5
+package com.rapidminer.tools.expression.internal.antlr;
+
+import org.antlr.v4.runtime.CharStream;
+import org.antlr.v4.runtime.Lexer;
+import org.antlr.v4.runtime.RuntimeMetaData;
+import org.antlr.v4.runtime.Vocabulary;
+import org.antlr.v4.runtime.VocabularyImpl;
+import org.antlr.v4.runtime.atn.ATN;
+import org.antlr.v4.runtime.atn.ATNDeserializer;
+import org.antlr.v4.runtime.atn.LexerATNSimulator;
+import org.antlr.v4.runtime.atn.PredictionContextCache;
+import org.antlr.v4.runtime.dfa.DFA;
+
+
+@SuppressWarnings({ "all", "warnings", "unchecked", "unused", "cast" })
+public class FunctionExpressionLexer extends Lexer {
+
+ static {
+ RuntimeMetaData.checkVersion("4.5", RuntimeMetaData.VERSION);
+ }
+
+ protected static final DFA[] _decisionToDFA;
+ protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache();
+ public static final int PLUS = 1, MINUS = 2, MULTIPLY = 3, DIVIDE = 4, MODULO = 5, POWER = 6, LESS = 7, LEQ = 8,
+ GREATER = 9, GEQ = 10, EQUALS = 11, NOT_EQUALS = 12, NOT = 13, OR = 14, AND = 15, LPARENTHESIS = 16,
+ RPARENTHESIS = 17, COMMA = 18, NAME = 19, INTEGER = 20, REAL = 21, ATTRIBUTE = 22, STRING = 23,
+ SCOPE_CONSTANT = 24, INDIRECT_SCOPE_CONSTANT = 25, LSQUARE_BRACKET = 26, OPENING_QOUTES = 27, SCOPE_OPEN = 28,
+ INDIRECT_SCOPE_OPEN = 29, WHITESPACES = 30, SCOPE_CLOSE = 31, RSQUARE_BRACKET = 32, CLOSING_QUOTES = 33;
+ public static final int INSIDE_SCOPE = 1;
+ public static final int INSIDE_ATTRIBUTE = 2;
+ public static final int INSIDE_STRING = 3;
+ public static String[] modeNames = { "DEFAULT_MODE", "INSIDE_SCOPE", "INSIDE_ATTRIBUTE", "INSIDE_STRING" };
+
+ public static final String[] ruleNames = { "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "MODULO", "POWER", "LESS", "LEQ",
+ "GREATER", "GEQ", "EQUALS", "NOT_EQUALS", "NOT", "OR", "AND", "LPARENTHESIS", "RPARENTHESIS", "COMMA", "NAME",
+ "INTEGER", "REAL", "DIGITS", "EXPONENT", "ATTRIBUTE", "STRING", "SCOPE_CONSTANT", "INDIRECT_SCOPE_CONSTANT",
+ "INSIDE_ATTRIBUTE", "INSIDE_SCOPE", "INSIDE_STRING", "UNICODE", "UNICODE_CHAR", "LSQUARE_BRACKET",
+ "OPENING_QOUTES", "SCOPE_OPEN", "INDIRECT_SCOPE_OPEN", "WHITESPACES", "SCOPE_CLOSE", "RSQUARE_BRACKET",
+ "CLOSING_QUOTES" };
+
+ private static final String[] _LITERAL_NAMES = { null, "'+'", "'-'", "'*'", "'/'", "'%'", "'^'", "'<'", "'<='", "'>'",
+ "'>='", "'=='", "'!='", "'!'", "'||'", "'&&'", "'('", "')'", "','", null, null, null, null, null, null, null,
+ "'['", null, "'%{'", "'#{'", null, "'}'", "']'" };
+ private static final String[] _SYMBOLIC_NAMES = { null, "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "MODULO", "POWER",
+ "LESS", "LEQ", "GREATER", "GEQ", "EQUALS", "NOT_EQUALS", "NOT", "OR", "AND", "LPARENTHESIS", "RPARENTHESIS",
+ "COMMA", "NAME", "INTEGER", "REAL", "ATTRIBUTE", "STRING", "SCOPE_CONSTANT", "INDIRECT_SCOPE_CONSTANT",
+ "LSQUARE_BRACKET", "OPENING_QOUTES", "SCOPE_OPEN", "INDIRECT_SCOPE_OPEN", "WHITESPACES", "SCOPE_CLOSE",
+ "RSQUARE_BRACKET", "CLOSING_QUOTES" };
+ public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
+
+ /**
+ * @deprecated Use {@link #VOCABULARY} instead.
+ */
+ @Deprecated
+ public static final String[] tokenNames;
+ static {
+ tokenNames = new String[_SYMBOLIC_NAMES.length];
+ for (int i = 0; i < tokenNames.length; i++) {
+ tokenNames[i] = VOCABULARY.getLiteralName(i);
+ if (tokenNames[i] == null) {
+ tokenNames[i] = VOCABULARY.getSymbolicName(i);
+ }
+
+ if (tokenNames[i] == null) {
+ tokenNames[i] = "true
in case it was set, false
otherwise
+ */
+ public boolean isMacroSet(String macro, Operator operator) {
+ synchronized (LOCK) {
+ if (macroMap.containsKey(macro) || PREDEFINED_OPERATOR_INDEPENDENT_MACROS.contains(macro)) {
+ return true;
+ }
+ }
+ return operator != null && PREDEFINED_OPERATOR_DEPENDENT_MACROS.contains(macro);
+
+ }
+
+ /**
+ * Resolves the macros "process_name", "process_file", "process_path", "t" and user defined
+ * macros.
+ */
+ public String getMacro(String macro) {
+ if (PREDEFINED_OPERATOR_INDEPENDENT_MACROS.contains(macro)) {
+ switch (macro) {
+ case PROCESS_NAME:
+ ProcessLocation processLocation = process.getProcessLocation();
+ if (processLocation == null) {
+ return null;
+ }
+ if (processLocation instanceof FileProcessLocation) {
+ return processLocation.getShortName().substring(0, processLocation.getShortName().lastIndexOf("."));
+ }
+ return processLocation.getShortName();
+ case PROCESS_FILE:
+ return process.getProcessLocation() != null ? process.getProcessLocation().getShortName() : null;
+ case PROCESS_PATH:
+ return process.getProcessLocation() != null ? process.getProcessLocation().toString() : null;
+ case Operator.STRING_EXPANSION_MACRO_TIME:
+ StringBuffer buffer = new StringBuffer();
+ resolveTimeMacro(buffer);
+ return buffer.toString();
+ default:
+ return null;
+ }
+ }
+ return this.macroMap.get(macro);
+ }
+
+ /**
+ * Resolves the macro.
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ *
+ * @return The String with resolved predefined macros. Returns {@code null} in case provided
+ * parameter str is {@code null}.
+ */
+ public String resolvePredefinedMacros(String str, Operator operator) throws UndefinedParameterError {
+ if (str == null) {
+ return null;
+ }
+ StringBuffer result = new StringBuffer();
+ int totalStart = 0;
+ int start = 0;
+ while ((start = str.indexOf(Operator.MACRO_STRING_START, totalStart)) >= 0) {
+ result.append(str.substring(totalStart, start));
+ int end = str.indexOf(Operator.MACRO_STRING_END, start);
+ if (end == -1) {
+ return str;
+ }
+ if (end >= start) {
+ String command = str.substring(start + 2, end);
+ String unshiftedOperatorMacroResult = resolveUnshiftedOperatorMacros(command, operator);
+ if (unshiftedOperatorMacroResult != null) {
+ result.append(unshiftedOperatorMacroResult);
+ } else if (command.startsWith(Operator.STRING_EXPANSION_MACRO_NUMBER_APPLIED_TIMES_SHIFTED
+ + Operator.STRING_EXPANSION_MACRO_PARAMETER_START)) {
+ int openNumberIndex = command.indexOf(Operator.STRING_EXPANSION_MACRO_PARAMETER_START);
+ int closeNumberIndex = command.indexOf(Operator.STRING_EXPANSION_MACRO_PARAMETER_END, openNumberIndex);
+ if (closeNumberIndex < 0 || closeNumberIndex <= openNumberIndex + 1) {
+ throw new UndefinedMacroError(operator, "predefinedMacro_shiftedExecutionCounter_format", "");
+ }
+ String numberString = command.substring(openNumberIndex + 1, closeNumberIndex);
+ int number;
+ try {
+ number = Integer.parseInt(numberString);
+ } catch (NumberFormatException e) {
+ throw new UndefinedMacroError(operator, "946", numberString);
+ }
+ result.append(operator.getApplyCount() + number);
+ } else if (Operator.STRING_EXPANSION_MACRO_TIME.equals(command)) {
+ resolveTimeMacro(result);
+ } else if (command.startsWith(
+ Operator.STRING_EXPANSION_MACRO_OPERATORVALUE + Operator.STRING_EXPANSION_MACRO_PARAMETER_START)) {
+ int openNumberIndex = command.indexOf(Operator.STRING_EXPANSION_MACRO_PARAMETER_START);
+ int closeNumberIndex = command.indexOf(Operator.STRING_EXPANSION_MACRO_PARAMETER_END, openNumberIndex);
+ if (closeNumberIndex < 0 || closeNumberIndex <= openNumberIndex + 1) {
+ throw new UndefinedMacroError(operator, "predefinedMacro_OperatorValue_format", "");
+ }
+ String operatorValueString = command.substring(openNumberIndex + 1, closeNumberIndex);
+ String[] operatorValuePair = operatorValueString.split("\\.");
+ if (operatorValuePair.length != 2) {
+ throw new UndefinedMacroError(operator, "predefinedMacro_OperatorValue_format", "");
+ }
+ Operator op = process.getOperator(operatorValuePair[0]);
+ if (op == null) {
+ throw new UndefinedMacroError(operator, "predefinedMacro_OperatorValue_wrongOperator",
+ operatorValuePair[0]);
+ }
+ Value value = op.getValue(operatorValuePair[1]);
+ if (value == null) {
+ throw new UndefinedMacroError(operator, "predefinedMacro_OperatorValue_noValue",
+ operatorValuePair[1]);
+ } else {
+ if (value.isNominal()) {
+ Object valueObject = value.getValue();
+ if (valueObject != null) {
+ result.append(valueObject.toString());
+ } else {
+ throw new UndefinedMacroError(operator, "predefinedMacro_OperatorValue_noValue",
+ operatorValuePair[1]);
+ }
+ } else {
+ double doubleValue = ((Double) value.getValue()).doubleValue();
+ if (!Double.isNaN(doubleValue)) {
+ result.append(Tools.formatIntegerIfPossible(doubleValue));
+ } else {
+ operator.logError("Value '" + operatorValuePair[1] + "' of the operator '"
+ + operatorValuePair[0] + "' not found!");
+ }
+ }
+ }
+ } else if (Operator.STRING_EXPANSION_MACRO_PERCENT_SIGN.equals(command)) {
+ result.append('%');
+ } else {
+ result.append(command);
+ }
+ } else {
+ end = start + 2;
+ result.append(Operator.MACRO_STRING_START);
+ }
+ totalStart = end + 1;
+ }
+ result.append(str.substring(totalStart));
+ return result.toString();
+ }
+
+ /**
+ * Resolves the macro t by writing the current date and time in the result buffer.
+ */
+ private void resolveTimeMacro(StringBuffer result) {
+ // Please note that Date and DateFormat cannot be used since Windows does not
+ // support the resulting file names
+ // TODO: Well, it can and should be used. Just use a custom SimpleDateFormat
+ Calendar calendar = new GregorianCalendar();
+ // year
+ result.append(calendar.get(Calendar.YEAR) + "_");
+ // month
+ String month = calendar.get(Calendar.MONTH) + 1 + "";
+ if (month.length() < 2) {
+ month = "0" + month;
+ }
+ result.append(month + "_");
+ // day
+ String day = calendar.get(Calendar.DAY_OF_MONTH) + "";
+ if (day.length() < 2) {
+ day = "0" + day;
+ }
+ result.append(day + "-");
+ // am - pm
+ int amPm = calendar.get(Calendar.AM_PM);
+ String amPmString = amPm == Calendar.AM ? "AM" : "PM";
+ result.append(amPmString + "_");
+ // hour
+ String hour = calendar.get(Calendar.HOUR) + "";
+ if (hour.length() < 2) {
+ hour = "0" + hour;
+ }
+ result.append(hour + "_");
+ // minute
+ String minute = calendar.get(Calendar.MINUTE) + "";
+ if (minute.length() < 2) {
+ minute = "0" + minute;
+ }
+ result.append(minute + "_");
+ // second
+ String second = calendar.get(Calendar.SECOND) + "";
+ if (second.length() < 2) {
+ second = "0" + second;
+ }
+ result.append(second);
+ }
+
+ /**
+ *
+ *
+ *
+ * Does not resolve p[].
+ */
+ private String resolveUnshiftedOperatorMacros(String command, Operator operator) {
+ if (Operator.STRING_EXPANSION_MACRO_OPERATORNAME.equals(command)
+ || Operator.STRING_EXPANSION_MACRO_OPERATORNAME_USER_FRIENDLY.equals(command)) {
+ return operator.getName();
+ } else if (Operator.STRING_EXPANSION_MACRO_OPERATORCLASS.equals(command)) {
+ return operator.getClass().getName();
+ } else if (Operator.STRING_EXPANSION_MACRO_NUMBER_APPLIED_TIMES.equals(command)
+ || Operator.STRING_EXPANSION_MACRO_NUMBER_APPLIED_TIMES_USER_FRIENDLY.equals(command)) {
+ return operator.getApplyCount() + "";
+ } else if (Operator.STRING_EXPANSION_MACRO_NUMBER_APPLIED_TIMES_PLUS_ONE.equals(command)) {
+ return operator.getApplyCount() + 1 + "";
+ } else {
+ return null;
+ }
+ }
+
+}
diff --git a/src/main/java/com/rapidminer/NoBugError.java b/src/main/java/com/rapidminer/NoBugError.java
new file mode 100644
index 000000000..c41500619
--- /dev/null
+++ b/src/main/java/com/rapidminer/NoBugError.java
@@ -0,0 +1,41 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapidminer;
+
+/**
+ * All exceptions that are no bugs (but caused by an error of the user) should implement this
+ * interface in order to indicate that this should not issue a bug report.
+ *
+ * @author Simon Fischer, Ingo Mierswa
+ */
+public interface NoBugError {
+
+ /** Returns a html message. */
+ public String getHTMLMessage();
+
+ /** Returns the error details/description. */
+ public String getDetails();
+
+ /** Returns the error name. */
+ public String getErrorName();
+
+ /** Returns the error code. */
+ public int getCode();
+
+}
diff --git a/src/main/java/com/rapidminer/NoOpUserError.java b/src/main/java/com/rapidminer/NoOpUserError.java
new file mode 100644
index 000000000..e9195068d
--- /dev/null
+++ b/src/main/java/com/rapidminer/NoOpUserError.java
@@ -0,0 +1,106 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapidminer;
+
+import com.rapidminer.operator.UserError;
+import com.rapidminer.tools.Tools;
+
+
+/**
+ * An exception caused outside an operator which is not a bug, but caused by the user.
+ *
+ * Unfortunately, this class doubles most of the code of {@link UserError}.
+ *
+ * @author Simon Fischer, Ingo Mierswa
+ */
+public class NoOpUserError extends Exception implements NoBugError {
+
+ private static final long serialVersionUID = -686838060355434724L;
+
+ private int code;
+
+ /**
+ * Creates a new NoOpUserError.
+ *
+ * @param cause
+ * The exception that caused the user error. May be null. Using this makes debugging
+ * a lot easier.
+ * @param code
+ * The error code referring to a message in the file
+ * UserErrorMessages.properties
+ * @param arguments
+ * Arguments for the short message.
+ */
+ public NoOpUserError(Throwable cause, int code, Object[] arguments) {
+ super(UserError.getErrorMessage(code, arguments), cause);
+ this.code = code;
+ }
+
+ /** Convenience constructor for messages with no arguments and cause. */
+ public NoOpUserError(Throwable cause, int code) {
+ this(code, new Object[0], cause);
+ }
+
+ public NoOpUserError(int code, Object[] arguments) {
+ this(null, code, arguments);
+ }
+
+ /** Convenience constructor for messages with no arguments. */
+ public NoOpUserError(int code) {
+ this(null, code, new Object[0]);
+ }
+
+ /** Convenience constructor for messages with exactly one argument. */
+ public NoOpUserError(int code, Object argument1) {
+ this(null, code, new Object[] { argument1 });
+ }
+
+ /**
+ * Convenience constructor for messages with exactly one arguments and cause.
+ */
+ public NoOpUserError(Throwable cause, int code, Object argument1) {
+ this(cause, code, new Object[] { argument1 });
+ }
+
+ /** Convenience constructor for messages with exactly two arguments. */
+ public NoOpUserError(int code, Object argument1, Object argument2) {
+ this(null, code, new Object[] { argument1, argument2 });
+ }
+
+ @Override
+ public String getDetails() {
+ return UserError.getResourceString(code, "long", "Description missing.");
+ }
+
+ @Override
+ public String getErrorName() {
+ return UserError.getResourceString(code, "name", "Unnamed error.");
+ }
+
+ @Override
+ public int getCode() {
+ return code;
+ }
+
+ @Override
+ public String getHTMLMessage() {
+ return "Error occured:
" + Tools.escapeXML(getMessage()) + "
" + Tools.escapeXML(getDetails())
+ + "";
+ }
+}
diff --git a/src/main/java/com/rapidminer/ObjectVisualizer.java b/src/main/java/com/rapidminer/ObjectVisualizer.java
new file mode 100644
index 000000000..963de956d
--- /dev/null
+++ b/src/main/java/com/rapidminer/ObjectVisualizer.java
@@ -0,0 +1,45 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapidminer;
+
+/**
+ * Interface managing the visualization of objects. This might be a dialog showing the feature
+ * values ({@link com.rapidminer.gui.ExampleVisualizer}) or more sophisticated methods like
+ * displaying a text or playing a piece of music. Please note that GUI components should not be
+ * constructed in the contstructor but in the method {@link #startVisualization(Object)} in order to
+ * ensure that the visualizer can be constructed also in environments where graphical user
+ * interfaces are not allowed.
+ *
+ * @author Michael Wurst, Ingo Mierswa
+ */
+public interface ObjectVisualizer {
+
+ public void startVisualization(Object objId);
+
+ public void stopVisualization(Object objId);
+
+ public String getTitle(Object objId);
+
+ public boolean isCapableToVisualize(Object objId);
+
+ public String getDetailData(Object objId, String fieldName);
+
+ public String[] getFieldNames(Object objId);
+
+}
diff --git a/src/main/java/com/rapidminer/OperatorLibraryService.java b/src/main/java/com/rapidminer/OperatorLibraryService.java
new file mode 100644
index 000000000..9486f1f0c
--- /dev/null
+++ b/src/main/java/com/rapidminer/OperatorLibraryService.java
@@ -0,0 +1,231 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapidminer;
+
+import com.rapidminer.gui.tools.actions.SelectionDependentAction;
+import com.rapidminer.gui.tools.actions.SelectionDependentAction.SelectionDependency;
+import com.rapidminer.operator.OperatorCreationException;
+import com.rapidminer.operator.libraries.LibraryOperatorDescription;
+import com.rapidminer.operator.libraries.OperatorLibrary;
+import com.rapidminer.tools.OperatorService;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Map;
+import java.util.Map.Entry;
+
+
+/**
+ * This singleton Service keeps track of all currently loaded {@link OperatorLibrary}s. It provides
+ * methods for loading and unloading {@link OperatorLibrary}s.
+ *
+ * Currently this is a singleton implementation with a static method for accessing the singleton but
+ * in future this might be replaced by a per process definition.
+ *
+ * Additionally it holds information for editing the Libraries. Actions can be added to the toolbar
+ * as well as to the context menu. They are only available on entries of the according class.
+ *
+ * @author Sebastian Land
+ */
+public class OperatorLibraryService {
+
+ /**
+ * Classes implementing this interface and having added with
+ * {@link OperatorLibraryService#registerOperatorLibraryListener(OperatorLibraryListener)} will
+ * be informed whenever an {@link OperatorLibrary} is added or removed.
+ *
+ * @author Sebastian Land
+ */
+ public interface OperatorLibraryListener {
+
+ public void informLibraryLoaded(OperatorLibrary library);
+
+ public void informLibraryUnloaded(OperatorLibrary library);
+
+ public void informLibraryChanged(OperatorLibrary library);
+ }
+
+ private static Listnull
values for empty results.
+ */
+ private boolean omitNullResults = true;
+
+ // -------------------
+ // Constructors
+ // -------------------
+
+ /** Constructs an process consisting only of a SimpleOperatorChain. */
+ public Process() {
+ try {
+ ProcessRootOperator root = OperatorService.createOperator(ProcessRootOperator.class);
+ root.rename(root.getOperatorDescription().getName());
+ setRootOperator(root);
+ } catch (Exception e) {
+ throw new RuntimeException("Cannot initialize root operator of the process: " + e.getMessage(), e);
+ }
+ initContext();
+ }
+
+ public Process(final File file) throws IOException, XMLException {
+ this(file, null);
+ }
+
+ /**
+ * Creates a new process from the given process file. This might have been created with the GUI
+ * beforehand.
+ */
+ public Process(final File file, final ProgressListener progressListener) throws IOException, XMLException {
+ this.processLocation = new FileProcessLocation(file);
+ initContext();
+ Reader in = null;
+ try {
+ in = new InputStreamReader(new FileInputStream(file), "UTF-8");
+ readProcess(in, progressListener);
+ } catch (IOException e) {
+ throw e;
+ } finally {
+ if (in != null) {
+ in.close();
+ }
+ }
+ }
+
+ /**
+ * Creates a new process from the given XML copying state information not covered by the XML
+ * from the parameter process.
+ */
+ public Process(final String xml, final Process process) throws IOException, XMLException {
+ this(xml);
+ this.processLocation = process.processLocation;
+ }
+
+ /** Reads an process configuration from an XML String. */
+ public Process(final String xmlString) throws IOException, XMLException {
+ initContext();
+ StringReader in = new StringReader(xmlString);
+ readProcess(in);
+ in.close();
+ }
+
+ /** Reads an process configuration from the given reader. */
+ public Process(final Reader in) throws IOException, XMLException {
+ initContext();
+ readProcess(in);
+ }
+
+ /** Reads an process configuration from the given stream. */
+ public Process(final InputStream in) throws IOException, XMLException {
+ initContext();
+ readProcess(new InputStreamReader(in, XMLImporter.PROCESS_FILE_CHARSET));
+ }
+
+ /** Reads an process configuration from the given URL. */
+ public Process(final URL url) throws IOException, XMLException {
+ initContext();
+ Reader in = new InputStreamReader(WebServiceTools.openStreamFromURL(url), getEncoding(null));
+ readProcess(in);
+ in.close();
+ }
+
+ protected Logger makeLogger() {
+ return Logger.getLogger(Process.class.getName());
+ }
+
+ private void initContext() {
+ getContext().addObserver(delegatingContextObserver, false);
+ }
+
+ /**
+ * Clone constructor. Makes a deep clone of the operator tree and the process file. The same
+ * applies for the operatorNameMap. The breakpoint listeners are copied by reference and all
+ * other fields are initialized like for a fresh process.
+ */
+ private Process(final Process other) {
+ this();
+ setRootOperator((ProcessRootOperator) other.rootOperator.cloneOperator(other.rootOperator.getName(), false));
+ this.currentOperator = null;
+ if (other.processLocation != null) {
+ this.processLocation = other.processLocation;
+ } else {
+ this.processLocation = null;
+ }
+ }
+
+ private void initLogging(final int logVerbosity) {
+ if (logVerbosity >= 0) {
+ logger.setLevel(WrapperLoggingHandler.LEVELS[logVerbosity]);
+ } else {
+ logger.setLevel(Level.INFO);
+ }
+ }
+
+ @Override
+ public Object clone() {
+ return new Process(this);
+ }
+
+ /**
+ * @deprecated Use {@link #setProcessState(int)} instead
+ */
+ @Deprecated
+ public synchronized void setExperimentState(final int state) {
+ setProcessState(state);
+ }
+
+ private void setProcessState(final int state) {
+ int oldState = this.processState;
+ this.processState = state;
+ fireProcessStateChanged(oldState, state);
+ }
+
+ /**
+ * @deprecated Use {@link #getProcessState()} instead
+ */
+ @Deprecated
+ public synchronized int getExperimentState() {
+ return getProcessState();
+ }
+
+ public int getProcessState() {
+ return this.processState;
+ }
+
+ // -------------------------
+ // User initiated state changes
+ // ---------------------------
+ /** Adds the given process state listener. */
+ public void addProcessStateListener(ProcessStateListener processStateListener) {
+ this.processStateListeners.add(processStateListener);
+ }
+
+ /** Removes the given process state listener. */
+ public void removeProcessStateListener(ProcessStateListener processStateListener) {
+ this.processStateListeners.remove(processStateListener);
+ }
+
+ private void fireProcessStateChanged(int stateBefore, int newState) {
+ // sanity check
+ if (stateBefore == newState) {
+ return;
+ }
+ Listfalse
is returned, the {@link IOContainer} returned by {@link #run()}
+ * will contain null
results instead of just omitting them.
+ */
+ public boolean isOmittingNullResults() {
+ return omitNullResults;
+ }
+
+ /**
+ * If set to false
the {@link IOContainer} returned by {@link #run()} will contain
+ * null
results instead of omitting them. By default this is true
.
+ */
+ public void setOmitNullResults(boolean omitNullResults) {
+ this.omitNullResults = omitNullResults;
+ }
+
+ /**
+ * Can be called by GUI components if visual representation or any other state not known to the
+ * process itself has changed.
+ */
+ public void updateNotify() {
+ fireUpdate(this);
+ }
+
+ public RepositoryAccessor getRepositoryAccessor() {
+ return repositoryAccessor;
+ }
+
+ public void setRepositoryAccessor(final RepositoryAccessor repositoryAccessor) {
+ this.repositoryAccessor = repositoryAccessor;
+ }
+
+ public Annotations getAnnotations() {
+ return annotations;
+ }
+
+ /**
+ * Indicates how deeply nested the current process is. The original process itself has a depth
+ * of {@code 0}. If that process spawns a new one via an Execute Process operator, the depth of
+ * the new one will be {@code 1}. If the new process also contains an Execute Process operator,
+ * the depth will be {@code 2} and so on.
+ *
+ * @return the nesting depth of the current process
+ */
+ public int getDepth() {
+ return nestingDepth;
+ }
+
+ /**
+ * Sets the nesting depth of this process. See {@link #getDepth()} for details.
+ *
+ * @param depth
+ * the new nesting depth
+ */
+ public void setDepth(int depth) {
+ this.nestingDepth = depth;
+ }
+
+ /**
+ * Checks weather the process can be saved as is. Throws an Exception if the Process should not
+ * be saved.
+ **/
+ public static void checkIfSavable(final Process process) throws Exception {
+ for (Operator operator : process.getAllOperators()) {
+ if (operator instanceof DummyOperator) {
+ throw new Exception(
+ "The process contains dummy operators. Remove all dummy operators or install all missing extensions in order to save the process.");
+ }
+ }
+ }
+
+}
diff --git a/src/main/java/com/rapidminer/ProcessContext.java b/src/main/java/com/rapidminer/ProcessContext.java
new file mode 100644
index 000000000..273c7bbc0
--- /dev/null
+++ b/src/main/java/com/rapidminer/ProcessContext.java
@@ -0,0 +1,253 @@
+/**
+ * Copyright (C) 2001-2016 by RapidMiner and the contributors
+ *
+ * Complete list of developers available at our web site:
+ *
+ * http://rapidminer.com
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the
+ * GNU Affero General Public License as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along with this program.
+ * If not, see http://www.gnu.org/licenses/.
+ */
+package com.rapidminer;
+
+import com.rapidminer.operator.OperatorCreationException;
+import com.rapidminer.operator.libraries.OperatorLibrary;
+import com.rapidminer.repository.RepositoryLocation;
+import com.rapidminer.tools.AbstractObservable;
+import com.rapidminer.tools.container.Pair;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.LinkedList;
+import java.util.List;
+
+
+/**
+ *