![JAR search and dependency download from the Maven repository](/logo.png)
eu.openaire.oaf.Organization Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.09.19 at 09:03:51 AM UTC
//
package eu.openaire.oaf;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlElementRefs;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice maxOccurs="unbounded">
* <element name="legalname" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="legalshortname" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="logourl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="originalId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="websiteurl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="country" type="{http://namespace.openaire.eu/oaf}qualifierType"/>
* <element name="collectedfrom" type="{http://namespace.openaire.eu/oaf}namedIdElementType"/>
* <element name="pid" type="{http://namespace.openaire.eu/oaf}structuredPropertyElementType"/>
* <element name="rels" type="{http://namespace.openaire.eu/oaf}relsType"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"legalnameOrLegalshortnameOrLogourl"
})
@XmlRootElement(name = "organization")
public class Organization {
@XmlElementRefs({
@XmlElementRef(name = "legalname", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "legalshortname", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "logourl", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "originalId", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "websiteurl", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "country", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "collectedfrom", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "pid", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false),
@XmlElementRef(name = "rels", namespace = "http://namespace.openaire.eu/oaf", type = JAXBElement.class, required = false)
})
protected List> legalnameOrLegalshortnameOrLogourl;
/**
* Gets the value of the legalnameOrLegalshortnameOrLogourl property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the legalnameOrLegalshortnameOrLogourl property.
*
*
* For example, to add a new item, do as follows:
*
* getLegalnameOrLegalshortnameOrLogourl().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link QualifierType }{@code >}
* {@link JAXBElement }{@code <}{@link NamedIdElementType }{@code >}
* {@link JAXBElement }{@code <}{@link StructuredPropertyElementType }{@code >}
* {@link JAXBElement }{@code <}{@link RelsType }{@code >}
*
*
*/
public List> getLegalnameOrLegalshortnameOrLogourl() {
if (legalnameOrLegalshortnameOrLogourl == null) {
legalnameOrLegalshortnameOrLogourl = new ArrayList>();
}
return this.legalnameOrLegalshortnameOrLogourl;
}
}