org.openml.apiconnector.xml.OpenmlApiResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apiconnector Show documentation
Show all versions of apiconnector Show documentation
Ancestor for API connector libraries for specific frameworks.
package org.openml.apiconnector.xml;
import java.io.Serializable;
import org.openml.apiconnector.settings.Constants;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
public abstract class OpenmlApiResponse implements Serializable {
private static final long serialVersionUID = 3347172372685632488L;
@XStreamAsAttribute
@XStreamAlias("xmlns:oml")
private final String oml = Constants.OPENML_XMLNS;
public String getOml() {
return oml;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy