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

eu.openaire.oaf.Entity 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
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">
 *       <sequence>
 *         <choice>
 *           <element ref="{http://namespace.openaire.eu/oaf}result"/>
 *           <element ref="{http://namespace.openaire.eu/oaf}organization"/>
 *           <element ref="{http://namespace.openaire.eu/oaf}datasource"/>
 *           <element ref="{http://namespace.openaire.eu/oaf}project"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "result", "organization", "datasource", "project" }) @XmlRootElement(name = "entity") public class Entity { @XmlElement(namespace = "http://namespace.openaire.eu/oaf") protected Result result; @XmlElement(namespace = "http://namespace.openaire.eu/oaf") protected Organization organization; @XmlElement(namespace = "http://namespace.openaire.eu/oaf") protected Datasource datasource; @XmlElement(namespace = "http://namespace.openaire.eu/oaf") protected Project project; /** * Gets the value of the result property. * * @return * possible object is * {@link Result } * */ public Result getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link Result } * */ public void setResult(Result value) { this.result = value; } /** * Gets the value of the organization property. * * @return * possible object is * {@link Organization } * */ public Organization getOrganization() { return organization; } /** * Sets the value of the organization property. * * @param value * allowed object is * {@link Organization } * */ public void setOrganization(Organization value) { this.organization = value; } /** * Gets the value of the datasource property. * * @return * possible object is * {@link Datasource } * */ public Datasource getDatasource() { return datasource; } /** * Sets the value of the datasource property. * * @param value * allowed object is * {@link Datasource } * */ public void setDatasource(Datasource value) { this.datasource = value; } /** * Gets the value of the project property. * * @return * possible object is * {@link Project } * */ public Project getProject() { return project; } /** * Sets the value of the project property. * * @param value * allowed object is * {@link Project } * */ public void setProject(Project value) { this.project = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy